/* ============================================
   ROOT — Variables & Reset
   ============================================ */
:root {
    /* Light theme — verilen renkler */
    --bg: #FAF9EE;
    --bg-soft: #F5F3E0;
    --bg-elevated: #FFFFFF;
    --ink: #1A1F2E;
    --ink-soft: #5A6478;
    --ink-faint: #8B92A3;
    --accent: #799EFF;
    --accent-deep: #4B7BE8;
    --accent-soft: #BFD0FF;
    --line: rgba(26, 31, 46, 0.08);
    --line-strong: rgba(26, 31, 46, 0.15);
    --shadow-sm: 0 1px 2px rgba(26, 31, 46, 0.04);
    --shadow-md: 0 8px 24px rgba(26, 31, 46, 0.06), 0 2px 6px rgba(26, 31, 46, 0.04);
    --shadow-lg: 0 24px 60px rgba(26, 31, 46, 0.10), 0 8px 20px rgba(26, 31, 46, 0.05);
    --grain-opacity: 0.4;
}

[data-theme="dark"] {
    --bg: #0E1119;
    --bg-soft: #161A26;
    --bg-elevated: #1B2030;
    --ink: #F2F0DC;
    --ink-soft: #B8BCC8;
    --ink-faint: #6A6F7E;
    --accent: #9BB7FF;
    --accent-deep: #799EFF;
    --accent-soft: rgba(155, 183, 255, 0.18);
    --line: rgba(242, 240, 220, 0.08);
    --line-strong: rgba(242, 240, 220, 0.15);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.4), 0 8px 20px rgba(0, 0, 0, 0.25);
    --grain-opacity: 0.25;
}

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

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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
    cursor: none;
}

/* Subtle grain over everything */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: var(--grain-opacity);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
}

[data-theme="dark"] body::before {
    mix-blend-mode: screen;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: none; background: none; border: none; color: inherit; }

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot, .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.25s ease, height 0.25s ease, opacity 0.2s ease;
    will-change: transform;
}
.cursor-dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
}
.cursor-ring {
    width: 32px; height: 32px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    opacity: 0.5;
}
.cursor-ring.hover {
    width: 64px; height: 64px;
    opacity: 0.3;
    background: var(--accent-soft);
}

@media (hover: none), (max-width: 900px) {
    .cursor-dot, .cursor-ring { display: none; }
    body, button { cursor: auto; }
    a { cursor: pointer; }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
}

em {
    font-style: italic;
    font-family: 'Fraunces', Georgia, serif;
    font-variation-settings: "opsz" 144;
    color: var(--accent-deep);
}

.italic { font-style: italic; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    background: transparent;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(250, 249, 238, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 0;
}

[data-theme="dark"] .nav.scrolled {
    background: rgba(14, 17, 25, 0.85);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Fraunces', serif;
}

.logo-mark {
    display: grid;
    place-items: center;
    width: 42px; height: 42px;
    background: var(--ink);
    color: var(--bg);
    border-radius: 50%;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
}

.nav-logo:hover .logo-mark { transform: rotate(360deg); }

.logo-text {
    font-size: 0.95rem;
    color: var(--ink);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    position: relative;
    font-size: 0.9rem;
    color: var(--ink-soft);
    transition: color 0.2s ease;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--ink);
}

.nav-link:hover::after { width: 100%; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.theme-toggle {
    display: grid;
    place-items: center;
    width: 42px; height: 42px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: var(--ink);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
    transform: rotate(15deg);
}

.theme-toggle svg {
    width: 18px; height: 18px;
    position: absolute;
    transition: transform 0.5s cubic-bezier(.4, 0, .2, 1), opacity 0.3s ease;
}

[data-theme="light"] .moon-icon,
:root:not([data-theme="dark"]) .moon-icon { 
    transform: translateY(150%); 
    opacity: 0; 
}
[data-theme="dark"] .sun-icon { 
    transform: translateY(-150%); 
    opacity: 0; 
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 8px 4px;
}

.menu-toggle span {
    width: 100%;
    height: 1.5px;
    background: var(--ink);
    transition: all 0.3s ease;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: float 20s ease-in-out infinite;
}

.blob-1 {
    width: 600px; height: 600px;
    background: var(--accent);
    top: -10%; right: -10%;
}

.blob-2 {
    width: 500px; height: 500px;
    background: var(--accent-soft);
    bottom: -20%; left: -10%;
    animation-delay: -7s;
}

.blob-3 {
    width: 700px; height: 700px;
    background: var(--accent);
    top: 20%; right: -15%;
    opacity: 0.25;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.05); }
    66% { transform: translate(-30px, 40px) scale(0.95); }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--ink-soft);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.meta-line {
    width: 40px; height: 1px;
    background: var(--accent);
}

.hero-title {
    font-size: clamp(3rem, 9vw, 8.5rem);
    line-height: 0.95;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
}

.hero-title span {
    display: block;
}

.hero-title .italic {
    font-style: italic;
    color: var(--accent-deep);
    font-weight: 300;
    padding-left: 1.5em;
    font-variation-settings: "opsz" 144;
}

.hero-sub {
    max-width: 540px;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    max-width: 700px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-num {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--ink-soft);
    line-height: 1.3;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--line-strong);
}

.scroll-hint {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-faint);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(0.3); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 1.75rem;
    border-radius: 100px;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--ink);
    color: var(--bg);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-deep);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
}

.btn-primary > * {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover::before {
    transform: translateY(0);
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--line-strong);
    color: var(--ink);
}

.btn-ghost:hover {
    border-color: var(--ink);
    background: var(--bg-soft);
}

.btn-large {
    padding: 1.2rem 2.25rem;
    font-size: 1rem;
}

/* ============================================
   SECTIONS GENERAL
   ============================================ */
section {
    position: relative;
    padding: 8rem 2rem;
    z-index: 2;
}

.section-tag {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.tag-num {
    font-family: 'Fraunces', serif;
    font-size: 0.95rem;
    color: var(--accent-deep);
    letter-spacing: 0;
}

.tag-text::before {
    content: '/';
    margin-right: 0.5rem;
    color: var(--ink-faint);
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    font-weight: 300;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.section-lead {
    max-width: 600px;
    font-size: 1.1rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 4rem;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    max-width: 1400px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-portrait {
    position: sticky;
    top: 8rem;
}

.portrait-frame {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 200px 200px 12px 12px;
    overflow: hidden;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.portrait-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.portrait-placeholder svg {
    width: 100%; height: 100%;
}

.portrait-badge {
    position: absolute;
    bottom: 1.5rem; right: 1.5rem;
    background: var(--bg-elevated);
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.portrait-badge span {
    font-size: 0.65rem;
    color: var(--ink-faint);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.portrait-badge strong {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--ink);
}

.about-content .section-title {
    margin-bottom: 2.5rem;
}

.about-text { margin-bottom: 3rem; }

.about-text p {
    font-size: 1.05rem;
    color: var(--ink-soft);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--ink);
    line-height: 1.6;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--line);
}

.cred-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    align-items: start;
}

.cred-year {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--accent-deep);
    padding-top: 0.2rem;
}

.cred-item strong {
    display: block;
    font-weight: 500;
    color: var(--ink);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cred-item p {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.5;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.services-bg-text {
    position: absolute;
    top: 4rem;
    right: -2rem;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: clamp(8rem, 20vw, 18rem);
    line-height: 1;
    color: var(--ink);
    opacity: 0.025;
    pointer-events: none;
    z-index: 0;
    letter-spacing: -0.04em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-soft), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before { opacity: 0.4; }

.service-card > * { position: relative; z-index: 1; }

.service-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--accent-deep);
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 56px; height: 56px;
    display: grid;
    place-items: center;
    background: var(--bg-soft);
    border-radius: 16px;
    color: var(--accent-deep);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: white;
    transform: rotate(-5deg) scale(1.05);
}

.service-icon svg {
    width: 28px; height: 28px;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

.services-note {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: var(--bg-soft);
    border-radius: 16px;
    text-align: center;
    border: 1px dashed var(--line-strong);
}

.services-note p {
    font-size: 0.9rem;
    color: var(--ink-soft);
    font-style: italic;
    font-family: 'Fraunces', serif;
}

/* ============================================
   BLOG
   ============================================ */
.blog {
    max-width: 1400px;
    margin: 0 auto;
    background: var(--bg-soft);
    border-radius: 32px;
    padding: 6rem 4rem;
}

.blog-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.blog-head .section-title {
    margin-bottom: 0;
}

.blog-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--ink);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--ink);
    transition: gap 0.3s ease;
}

.blog-all:hover { gap: 1rem; }

.blog-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
}

.blog-card {
    background: var(--bg-elevated);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

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

.blog-card-large {
    grid-row: span 2;
    grid-column: 1;
}

.blog-card:not(.blog-card-large) {
    flex-direction: row;
}

.blog-img {
    position: relative;
    overflow: hidden;
    background: var(--bg-soft);
}

.blog-card-large .blog-img {
    aspect-ratio: 16 / 10;
}

.blog-card:not(.blog-card-large) .blog-img {
    width: 140px;
    flex-shrink: 0;
}

.blog-img-pattern {
    position: absolute;
    inset: 0;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-pattern {
    transform: scale(1.05);
}

.blog-pattern-1 {
    background: 
        radial-gradient(circle at 20% 30%, var(--accent) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--accent-soft) 0%, transparent 50%),
        linear-gradient(135deg, var(--accent-soft) 0%, var(--bg-soft) 100%);
}
.blog-pattern-1::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.1) 20px, rgba(255,255,255,0.1) 21px);
}

.blog-pattern-2 {
    background: 
        radial-gradient(circle at 70% 30%, var(--accent) 0%, transparent 60%),
        linear-gradient(180deg, var(--accent-soft) 0%, var(--bg-soft) 100%);
}

.blog-pattern-3 {
    background: 
        radial-gradient(ellipse at 30% 70%, var(--accent) 0%, transparent 60%),
        linear-gradient(45deg, var(--accent-soft), var(--bg-soft));
}

.blog-pattern-4 {
    background: 
        conic-gradient(from 45deg at 50% 50%, var(--accent-soft), var(--accent), var(--accent-soft));
    opacity: 0.7;
}

.blog-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.blog-card:not(.blog-card-large) .blog-body {
    padding: 1.5rem;
    gap: 0.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--ink-faint);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.blog-dot { color: var(--accent); }

.blog-card h3 {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.blog-card:not(.blog-card-large) h3 {
    font-size: 1.05rem;
    line-height: 1.3;
}

.blog-card p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

.blog-read {
    margin-top: auto;
    font-size: 0.85rem;
    color: var(--accent-deep);
    font-weight: 500;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.contact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    border-radius: 32px;
}

.contact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    font-weight: 300;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.contact-title em { display: inline; }

.contact-lead {
    font-size: 1.15rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.contact-info {
    background: var(--bg-elevated);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    box-shadow: var(--shadow-md);
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
}

.info-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.info-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

.info-value {
    font-size: 1rem;
    color: var(--ink);
    transition: color 0.2s ease;
}

a.info-value:hover { color: var(--accent-deep); }

.info-social {
    display: flex;
    gap: 1rem;
}

.info-social a {
    font-size: 0.95rem;
    color: var(--ink);
    border-bottom: 1px solid var(--line-strong);
    padding-bottom: 2px;
    transition: all 0.2s ease;
}

.info-social a:hover {
    color: var(--accent-deep);
    border-color: var(--accent);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--ink);
    color: var(--bg);
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 2;
}

[data-theme="dark"] .footer {
    background: var(--bg-soft);
    color: var(--ink);
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 4rem;
    align-items: start;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(250, 249, 238, 0.1);
}

[data-theme="dark"] .footer-grid {
    border-bottom-color: var(--line);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: grid;
    place-items: center;
    width: 48px; height: 48px;
    background: var(--bg);
    color: var(--ink);
    border-radius: 50%;
    font-family: 'Fraunces', serif;
    font-size: 1rem;
}

[data-theme="dark"] .footer-logo {
    background: var(--ink);
    color: var(--bg);
}

.footer-brand p {
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    line-height: 1.4;
}

.footer-brand p span {
    font-size: 0.85rem;
    opacity: 0.6;
    font-family: 'Inter', sans-serif;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-nav a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.footer-nav a:hover { opacity: 1; }

.footer-meta {
    text-align: right;
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-fine {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.6;
    font-style: italic;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 60px; height: 60px;
    background: #25D366;
    color: white;
    display: grid;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 90;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(-5deg);
}

.whatsapp-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================
   ANIMATIONS — reveal
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.9s cubic-bezier(.2, .8, .2, 1) forwards;
    animation-delay: var(--d, 0s);
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(.2, .8, .2, 1), transform 0.9s cubic-bezier(.2, .8, .2, 1);
}

[data-reveal].in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-portrait {
        position: relative;
        top: 0;
        max-width: 400px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .blog-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .blog-card-large {
        grid-row: auto;
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    section { padding: 5rem 1.25rem; }
    
    .nav-container { padding: 0 1.25rem; gap: 1rem; }
    .logo-text { display: none; }
    .nav-menu {
        position: fixed;
        top: 0; right: 0;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        background: var(--bg);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
        box-shadow: var(--shadow-lg);
        border-left: 1px solid var(--line);
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-link { font-size: 1.1rem; }
    .menu-toggle { display: flex; }
    .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.open span:nth-child(2) { opacity: 0; }
    .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    
    .hero { padding: 6rem 1.25rem 4rem; }
    .hero-title .italic { padding-left: 0; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { justify-content: center; }
    .hero-stats { gap: 1.25rem; }
    .stat-divider { display: none; }
    
    .services-grid { grid-template-columns: 1fr; }
    
    .blog { padding: 4rem 1.5rem; border-radius: 20px; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card-large { grid-column: 1; }
    .blog-card:not(.blog-card-large) { flex-direction: column; }
    .blog-card:not(.blog-card-large) .blog-img { width: 100%; aspect-ratio: 16/10; }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .footer-brand { justify-content: center; }
    .footer-meta { text-align: center; }
    .footer-nav { justify-content: center; }
    
    .whatsapp-float {
        bottom: 1.25rem; right: 1.25rem;
        width: 56px; height: 56px;
    }
    
    .cred-item {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-stats { flex-direction: column; align-items: flex-start; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .blob { animation: none; }
}


/* ============================================
   WORDPRESS — ARCHIVE / SINGLE / 404
   ============================================ */

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999;
    padding: 1rem 1.5rem;
    background: var(--ink);
    color: var(--bg);
    text-decoration: none;
}
.skip-link:focus { left: 1rem; top: 1rem; }
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
}

/* Logo */
.custom-logo-link img {
    height: 42px; width: auto;
}

/* Portrait image */
.portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blog featured image */
.blog-img-photo {
    width: 100%; height: 100%;
    object-fit: cover;
}

.blog-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.blog-card:not(.blog-card-large) .blog-card-link {
    flex-direction: row;
}

/* Empty blog state */
.blog-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--ink-soft);
}
.blog-empty p {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

/* ============================================
   ARCHIVE / BLOG LIST PAGE
   ============================================ */
.archive-section {
    padding: 10rem 2rem 6rem;
    min-height: 80vh;
}

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

.archive-head {
    margin-bottom: 5rem;
    max-width: 800px;
}

.archive-description {
    margin-top: 1rem;
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.archive-card {
    background: var(--bg-elevated);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: all 0.4s ease;
}

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

.archive-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.archive-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-soft);
}

.archive-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.archive-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.archive-body h2 {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.archive-body p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.archive-body .blog-read {
    margin-top: auto;
}

/* Pagination */
.pagination {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.pagination .nav-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.pagination .page-numbers {
    display: grid;
    place-items: center;
    min-width: 44px;
    height: 44px;
    padding: 0 0.75rem;
    border: 1px solid var(--line-strong);
    border-radius: 100px;
    font-size: 0.95rem;
    color: var(--ink);
    transition: all 0.2s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}

.no-posts {
    text-align: center;
    color: var(--ink-soft);
    font-size: 1.1rem;
    padding: 4rem 2rem;
}

/* ============================================
   SINGLE POST / PAGE
   ============================================ */
.single-post,
.single-page {
    padding: 8rem 2rem 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.single-head {
    margin-bottom: 3rem;
}

.single-head-inner .section-tag {
    margin-bottom: 1.5rem;
}

.single-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 300;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.single-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--ink-faint);
    letter-spacing: 0.05em;
    flex-wrap: wrap;
}

.single-feature {
    margin: 3rem -2rem;
    border-radius: 0;
    overflow: hidden;
}

.single-feature img {
    width: 100%;
    height: auto;
    display: block;
}

.single-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--ink);
}

.single-content > * {
    margin-bottom: 1.5rem;
}

.single-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.single-content h3 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.single-content h4 {
    font-size: 1.2rem;
    margin-top: 2rem;
    font-weight: 500;
}

.single-content p {
    color: var(--ink);
}

.single-content a {
    color: var(--accent-deep);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.single-content a:hover {
    text-decoration-thickness: 2px;
}

.single-content blockquote {
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    color: var(--ink-soft);
}

.single-content ul,
.single-content ol {
    padding-left: 1.5rem;
}

.single-content li {
    margin-bottom: 0.5rem;
}

.single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.single-content pre,
.single-content code {
    background: var(--bg-soft);
    border-radius: 6px;
    padding: 0.2rem 0.4rem;
    font-size: 0.9em;
}

.single-content pre {
    padding: 1rem;
    overflow-x: auto;
}

/* Single footer */
.single-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.single-tags {
    font-size: 0.9rem;
    color: var(--ink-soft);
    margin-bottom: 2rem;
}

.single-tags a {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--bg-soft);
    border-radius: 100px;
    margin: 0 0.25rem;
    font-size: 0.85rem;
    color: var(--ink);
}

.single-cta {
    background: var(--bg-soft);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}

.single-cta p {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--ink);
}

/* Single nav */
.single-nav {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.single-nav a {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.single-nav a:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.single-nav-next {
    text-align: right;
    grid-column: 2;
}

.nav-label {
    font-size: 0.8rem;
    color: var(--ink-faint);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-title {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    color: var(--ink);
}

/* Comments */
.comments-area {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--line);
}

.comments-title {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-body {
    padding: 1.5rem;
    background: var(--bg-soft);
    border-radius: 16px;
    margin-bottom: 1rem;
}

.comment-respond {
    margin-top: 2rem;
}

.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: var(--bg);
    color: var(--ink);
    font: inherit;
    margin-top: 0.5rem;
}

.comment-respond textarea {
    min-height: 120px;
    resize: vertical;
}

.comment-respond .form-submit input {
    width: auto;
    background: var(--ink);
    color: var(--bg);
    padding: 0.875rem 2rem;
    border-radius: 100px;
    cursor: pointer;
    border: 0;
}

/* ============================================
   404 ERROR PAGE
   ============================================ */
.error-404 {
    min-height: 80vh;
    display: grid;
    place-items: center;
    padding: 6rem 2rem;
    text-align: center;
}

.error-container {
    max-width: 600px;
}

.error-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: clamp(6rem, 18vw, 12rem);
    line-height: 1;
    color: var(--accent);
    margin-bottom: 1rem;
}

.error-text {
    font-size: 1.1rem;
    color: var(--ink-soft);
    margin: 1.5rem 0 2.5rem;
}

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

/* ============================================
   RESPONSIVE - WP additions
   ============================================ */
@media (max-width: 768px) {
    .archive-section { padding: 7rem 1.25rem 4rem; }
    .archive-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    
    .single-post, .single-page { padding: 6rem 1.25rem 3rem; }
    .single-feature { margin: 2rem -1.25rem; }
    
    .single-nav { grid-template-columns: 1fr; }
    .single-nav-next { grid-column: 1; text-align: left; }
    
    .single-cta { padding: 1.75rem; }
}

/* Contact note - tedavi seansı uyarısı */
.contact-note {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
    padding: 1rem 1.25rem;
    background: var(--bg-soft);
    border-radius: 12px;
    border-left: 3px solid var(--accent);
    font-style: italic;
}
