/* =========================================================
   TATLICI MUSTAFA — style.css
   Değişkenler, reset, tipografi, layout ve section stilleri.
   ========================================================= */

:root {
    --gold: #C6922E;
    --gold-light: #E3B45C;
    --gold-dark: #9C7223;
    --ink: #111111;
    --ink-soft: #2A2A2A;
    --paper: #FFFFFF;
    --cream: #FAF6EF;
    --brown: #3B2A1A;
    --amber: #D98E3A;
    --gray: #6B6B6B;
    --border: rgba(17, 17, 17, 0.08);

    --font-head: 'Plus Jakarta Sans', 'Manrope', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --container: 1240px;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --nav-h: 84px;
}

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

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
input, textarea, select { font: inherit; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; margin: 0; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

.text-gold { color: var(--gold); }

.skip-link {
    position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--paper);
    padding: 12px 20px; z-index: 2000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.no-scroll { overflow: hidden; }

/* ---------- Section genel ---------- */
section { padding: clamp(64px, 10vw, 128px) 0; position: relative; scroll-margin-top: calc(var(--nav-h) + 12px); }

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-eyebrow {
    display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 13px;
    letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.section-title { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.section-subtitle { color: var(--gray); font-size: 17px; line-height: 1.6; }

/* ---------- Reveal animasyonları ---------- */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease);
    transition-delay: calc(var(--d, 0) * 90ms);
    will-change: transform, opacity;
}
.reveal-up[data-reveal] { transform: translate3d(0, 36px, 0); }
.reveal-scale[data-reveal] { transform: scale3d(0.94, 0.94, 1); filter: blur(6px); }
[data-reveal].is-visible { opacity: 1; transform: translate3d(0, 0, 0) scale3d(1, 1, 1); filter: blur(0); }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
    height: var(--nav-h);
    display: flex; align-items: center;
    background: transparent;
    transition: background-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.3s var(--ease);
}
.navbar.is-scrolled, .navbar.navbar--solid {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    box-shadow: 0 1px 0 var(--border);
    height: 72px;
}
.navbar__inner { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.navbar__logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 19px; color: var(--paper); }
.navbar.is-scrolled .navbar__logo, .navbar.navbar--solid .navbar__logo { color: var(--ink); }
.navbar__logo-mark {
    width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); color: var(--paper); font-size: 14px;
}
.navbar__logo--footer { color: var(--paper); }

.navbar__list { display: flex; align-items: center; gap: 32px; }
.navbar__link {
    color: var(--paper); font-size: 15px; font-weight: 500; position: relative; padding: 6px 0;
}
.navbar__link::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--gold);
    transition: width 0.3s var(--ease);
}
.navbar__link:hover::after { width: 100%; }
.navbar.is-scrolled .navbar__link, .navbar.navbar--solid .navbar__link { color: var(--ink); }

.navbar__actions { display: flex; align-items: center; gap: 12px; }
.navbar__cta { display: none; }

.btn.btn--icon {
    width: 42px; height: 42px; min-width: 42px; min-height: 42px; padding: 0;
    border-radius: 50%; display: grid; place-items: center;
    background: rgba(255, 255, 255, 0.12); color: var(--paper); transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.navbar.is-scrolled .btn--icon, .navbar.navbar--solid .btn--icon { background: var(--cream); color: var(--ink); }
.btn--icon svg { width: 20px; height: 20px; fill: currentColor; }
.btn--icon:hover { transform: translateY(-2px); }
.btn--whatsapp:hover { background: #25D366; color: #fff; }
.btn--call:hover { background: var(--gold); color: #fff; }

.navbar__burger {
    width: 42px; height: 42px; display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.navbar__burger span { width: 22px; height: 2px; background: var(--paper); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.navbar.is-scrolled .navbar__burger span, .navbar.navbar--solid .navbar__burger span { background: var(--ink); }
.navbar__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbar__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
    min-height: 100svh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    background: var(--ink);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img {
    width: 100%; height: 100%; object-fit: cover;
    animation: heroZoom 22s ease-in-out infinite alternate;
    transform-origin: center;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.12); } }
.hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(17,17,17,0.55) 0%, rgba(17,17,17,0.35) 45%, rgba(17,17,17,0.85) 100%);
}
.hero__grain {
    position: absolute; inset: 0; opacity: 0.05; pointer-events: none; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__content { position: relative; z-index: 2; max-width: 760px; color: var(--paper); padding-top: var(--nav-h); }
.hero__badge {
    display: inline-block; padding: 8px 18px; border-radius: 999px; font-size: 13px; font-weight: 600;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(8px);
    margin-bottom: 24px;
}
.hero__title { font-size: clamp(38px, 6.4vw, 76px); display: flex; flex-direction: column; gap: 4px; }
.hero__subtitle { font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,0.82); max-width: 560px; margin: 24px 0 36px; line-height: 1.6; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__floating-card {
    position: absolute; right: 6%; bottom: 8%; z-index: 2;
    width: 280px; padding: 28px; border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.92); backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
}
.hero__floating-card-title { font-size: 16px; margin-bottom: 16px; }
.hero__floating-card-list li { display: flex; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; font-weight: 500; }
.hero__floating-card-list li:last-child { border-bottom: none; }
.hero__floating-card-list strong { color: var(--gold-dark); }
.hero__floating-card-cta { margin-top: 16px; font-size: 14px; padding: 12px 20px; }
.hero__floating-card-notes { margin-top: 14px; display: flex; flex-direction: column; gap: 4px; }
.hero__floating-card-notes p { font-size: 11.5px; color: var(--gray); }

.hero__scroll-indicator {
    position: absolute; left: 50%; bottom: 32px; transform: translateX(-50%); z-index: 2;
    width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.5); border-radius: 20px;
}
.hero__scroll-indicator span {
    position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 8px; border-radius: 2px; background: var(--paper);
    animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 20px; } }

/* =========================================================
   TRUST
   ========================================================= */
.trust { padding-block: 56px; background: var(--cream); }
.trust__counters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.trust__counter-value, .trust__counter-suffix { font-family: var(--font-head); font-size: clamp(32px, 5vw, 52px); font-weight: 800; color: var(--gold-dark); }
.trust__counter-label { display: block; margin-top: 6px; font-size: 15px; color: var(--gray); }

/* =========================================================
   SERVICES
   ========================================================= */
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
    border-radius: var(--radius-md); overflow: hidden; background: var(--paper);
    border: 1px solid var(--border); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service-card:hover { box-shadow: 0 24px 48px -24px rgba(17,17,17,0.25); }
.service-card__media { position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--cream); }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.08); }
.service-card__icon {
    position: absolute; top: 14px; left: 14px; width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,0.9); display: grid; place-items: center; color: var(--gold-dark);
}
.service-card__icon svg { width: 20px; height: 20px; }
.service-card__body { padding: 22px; }
.service-card__title { font-size: 18px; margin-bottom: 8px; }
.service-card__desc { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.service-card__cta { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14px; color: var(--gold-dark); }
.service-card__cta svg { width: 16px; height: 16px; stroke: currentColor; fill: none; transition: transform 0.3s var(--ease); }
.service-card__cta:hover svg { transform: translateX(4px); }

/* =========================================================
   STEPS (Nasıl çalışıyoruz)
   ========================================================= */
.steps { background: var(--ink); color: var(--paper); }
.steps .section-eyebrow { color: var(--gold-light); }
.steps__timeline { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; }
.steps__item { display: flex; flex-direction: column; align-items: center; gap: 14px; width: 160px; text-align: center; }
.steps__number {
    width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
    font-family: var(--font-head); font-weight: 800; font-size: 22px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); color: var(--ink);
}
.steps__title { font-size: 15px; font-weight: 600; }
.steps__arrow { color: var(--gold); opacity: 0.6; }
.steps__arrow svg { width: 20px; height: 20px; stroke: currentColor; fill: none; transform: rotate(-90deg); }

/* =========================================================
   PRICING
   ========================================================= */
.pricing { background: var(--cream); }
.pricing__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: stretch; }
.pricing-card {
    background: var(--paper); border-radius: var(--radius-lg); padding: 40px 32px; text-align: center;
    border: 1px solid var(--border); position: relative; display: flex; flex-direction: column;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -30px rgba(17,17,17,0.3); }
.pricing-card--featured { background: var(--ink); color: var(--paper); transform: scale(1.04); }
.pricing-card--featured:hover { transform: scale(1.04) translateY(-8px); }
.pricing-card--special { border-color: var(--gold); border-width: 1.5px; }
.pricing-card__badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: var(--ink); font-size: 12px; font-weight: 700; padding: 6px 16px; border-radius: 999px;
    white-space: nowrap;
}
.pricing-card__badge--special { background: var(--ink); color: var(--gold-light); }
.pricing-card__people { font-size: 24px; margin-bottom: 6px; }
.pricing-card__tagline { font-size: 14px; color: var(--gray); margin-bottom: 24px; }
.pricing-card--featured .pricing-card__tagline { color: rgba(255,255,255,0.65); }
.pricing-card__features { text-align: left; margin-bottom: 28px; flex: 1; }
.pricing-card__features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; }
.pricing-card__features .icon { color: var(--gold); flex-shrink: 0; }
.pricing-card__actions { display: flex; flex-direction: column; gap: 12px; }
.pricing-card__call { display: inline-flex; align-items: center; justify-content: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--gray); }
.pricing-card__call .icon { color: var(--gold); }
.pricing-card--featured .pricing-card__call { color: rgba(255,255,255,0.7); }
.pricing__note { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-top: 40px; font-size: 14px; color: var(--gray); }

/* =========================================================
   ADVANTAGES
   ========================================================= */
.advantages__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.advantage-item {
    display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center;
    padding: 28px 16px; border-radius: var(--radius-md); background: var(--cream);
    transition: transform 0.3s var(--ease);
}
.advantage-item:hover { transform: translateY(-4px); }
.advantage-item__icon { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--paper); color: var(--gold-dark); }
.advantage-item__icon svg { width: 24px; height: 24px; }
.advantage-item__title { font-size: 14px; font-weight: 600; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials__slider { overflow: hidden; }
.testimonials__track { display: flex; gap: 24px; transition: transform 0.5s var(--ease); }
.testimonial-card {
    flex: 0 0 calc(33.333% - 16px); background: var(--paper); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 28px; transition: box-shadow 0.3s var(--ease);
}
.testimonial-card:hover { box-shadow: 0 24px 48px -28px rgba(17,17,17,0.25); }
.testimonial-card__quote .icon { width: 26px; height: 26px; color: var(--gold); margin-bottom: 10px; }
.testimonial-card__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-card__text { font-size: 15px; line-height: 1.6; margin-bottom: 20px; color: var(--ink-soft); }
.testimonial-card__author { display: flex; align-items: center; gap: 10px; }
.testimonial-card__avatar {
    width: 36px; height: 36px; border-radius: 50%; background: var(--cream); color: var(--gold-dark);
    display: grid; place-items: center; font-weight: 700;
}
.testimonial-card__name { font-weight: 600; font-size: 14px; }
.testimonials__controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 36px; }
.testimonials__arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); font-size: 22px; }
.testimonials__arrow:hover { background: var(--ink); color: var(--paper); }
.testimonials__dots { display: flex; gap: 8px; }
.testimonials__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
.testimonials__dot.is-active { background: var(--gold); width: 22px; border-radius: 4px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq__list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq__item { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; background: var(--paper); }
.faq__question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; text-align: left; font-weight: 600; font-size: 16px; }
.faq__chevron { width: 20px; height: 20px; stroke: currentColor; fill: none; transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq__item.is-open .faq__chevron { transform: rotate(180deg); color: var(--gold); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq__answer p { padding: 0 24px 20px; color: var(--gray); line-height: 1.6; font-size: 15px; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__details { margin: 32px 0; display: flex; flex-direction: column; gap: 20px; }
.contact__details li { display: flex; gap: 16px; align-items: flex-start; }
.contact__icon { width: 44px; height: 44px; border-radius: 50%; background: var(--cream); color: var(--gold-dark); display: grid; place-items: center; flex-shrink: 0; }
.contact__icon svg { width: 20px; height: 20px; }
.contact__details strong { display: block; font-size: 13px; color: var(--gray); font-weight: 600; margin-bottom: 2px; }
.contact__cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.contact__map { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.contact__map iframe { width: 100%; height: 100%; border: 0; }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner { background: linear-gradient(135deg, var(--brown), var(--ink)); color: var(--paper); }
.cta-banner__inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta-banner__title { font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 8px; }
.cta-banner__subtitle { color: rgba(255,255,255,0.75); max-width: 480px; }
.cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink); color: rgba(255,255,255,0.75); padding: 80px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer__desc { font-size: 14px; line-height: 1.7; margin: 16px 0 20px; max-width: 320px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center; font-size: 12px; font-weight: 700; }
.footer__social a:hover { background: var(--gold); color: var(--ink); }
.footer__title { color: var(--paper); font-size: 15px; margin-bottom: 18px; }
.footer__list { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer__list a:hover { color: var(--gold-light); }
.footer__bottom { padding: 24px 0; text-align: center; font-size: 13px; }

/* =========================================================
   STICKY ELEMENTS
   ========================================================= */
.sticky-actions {
    position: fixed; right: 24px; bottom: 24px; z-index: 900; display: flex; flex-direction: column; gap: 12px;
    opacity: 0; visibility: hidden; transform: translateY(12px); transition: all 0.4s var(--ease);
}
.sticky-actions.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.sticky-actions__btn {
    width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.4); transition: transform 0.3s var(--ease);
}
.sticky-actions__btn svg { width: 24px; height: 24px; fill: currentColor; }
.sticky-actions__btn:hover { transform: scale(1.08); }
.sticky-actions__btn--whatsapp { background: #25D366; color: #fff; }
.sticky-actions__btn--call { background: var(--gold); color: #fff; }
.sticky-actions__btn--top { background: var(--ink); color: #fff; }

.mobile-bar {
    display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
    background: var(--paper); box-shadow: 0 -8px 30px rgba(0,0,0,0.12);
    transform: translateY(100%); transition: transform 0.4s var(--ease);
}
.mobile-bar.is-visible { transform: translateY(0); }
.mobile-bar__item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 10px 0; font-size: 12px; font-weight: 600; }

/* =========================================================
   ABOUT / BLOG (iç sayfa ortak stiller)
   ========================================================= */
.about-hero { padding-top: calc(var(--nav-h) + 64px); text-align: center; background: var(--cream); }
.about-hero__title { font-size: clamp(30px, 5vw, 48px); margin: 16px 0; }
.about-hero .section-subtitle { margin-inline: auto; }

.about-story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-story__media img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-story__text p { color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.about-story__values { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.about-story__values li { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.about-story__values .icon--sm { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* Blog listesi */
.blog-hero { padding-top: calc(var(--nav-h) + 64px); text-align: center; background: var(--cream); }
.blog-hero__title { font-size: clamp(30px, 5vw, 48px); margin: 16px 0 8px; }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { border-radius: var(--radius-md); overflow: hidden; background: var(--paper); border: 1px solid var(--border); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -28px rgba(17,17,17,0.25); }
.blog-card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--cream); }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover .blog-card__media img { transform: scale(1.06); }
.blog-card__body { padding: 22px; }
.blog-card__date { font-size: 12px; color: var(--gold-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.blog-card__title { font-size: 17px; margin: 10px 0; }
.blog-card__excerpt { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.blog-card__link { font-weight: 600; font-size: 14px; color: var(--gold-dark); }

/* Blog detay */
.blog-post { padding-top: calc(var(--nav-h) + 32px); }
.blog-post__header { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.blog-post__date { font-size: 13px; color: var(--gold-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.blog-post__title { font-size: clamp(28px, 4.4vw, 42px); margin: 12px 0; }
.blog-post__cover { max-width: 960px; margin: 0 auto 48px; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; }
.blog-post__cover img { width: 100%; height: 100%; object-fit: cover; }
.blog-post__body { max-width: 720px; margin: 0 auto; }
.blog-post__body h2 { font-size: 24px; margin: 32px 0 14px; }
.blog-post__body p { color: var(--ink-soft); line-height: 1.8; font-size: 16px; margin-bottom: 16px; }
.blog-post__back { display: inline-flex; align-items: center; gap: 8px; margin-top: 40px; font-weight: 600; color: var(--gold-dark); }
