/* ============================================
   Mehmet Güneş Açıkgöz — Ana Stil
   Tema: Açık / Minimal, Klasik Tipografi
   ============================================ */

:root {
    --bg: #f9f7f4;
    --bg-light: #f2f0ec;
    --surface: #ffffff;
    --border: #e2ddd6;
    --text: #1a1714;
    --text-muted: #6b6560;
    --accent: #8b6e4e;
    --accent-light: #c4a882;
    --accent-dark: #5c4733;
    --navy: #2c3e50;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Karla', sans-serif;
    --radius: 4px;
    --shadow: 0 2px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
    --max-w: 1200px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* İçerik alanı büyüsün; kısa sayfalarda footer alta yapışsın, footer altında beyaz boşluk kalmasın */
#sayfa-icerigi {
    flex: 1;
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
}

/* JavaScript geçiş anında bu sınıfı ekleyip eski içeriği yumuşakça gizleyecek */
#sayfa-icerigi.sayfa-cikisi {
    opacity: 0;
}

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

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section { padding: 80px 0; }
.bg-light { background: var(--bg-light); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

/* ── TYPOGRAPHY ── */
.section-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 24px;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
}

.section-header .section-title { margin-bottom: 0; }

/* ── HEADER / NAV ── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    background: rgba(249, 247, 244, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

/* Header altında boşluk — sadece iç sayfalarda (Biyografi, Kitaplar vb.) gösterilir; anasayfada yok */
.header-spacer {
    height: 70px;
    min-height: 70px;
    flex-shrink: 0;
    display: none;
}
.inner-page .header-spacer {
    display: block;
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

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

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: all var(--transition);
    transform-origin: center;
}
.nav-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Sosyal Medya İkonları — Header (linklerle aynı aralık) */
.nav-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.nav-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.nav-social-icon img {
    width: 16px;
    height: auto;
}

/* Yalnizca YouTube ikonu */
.nav-social-icon img[src*="youtube.svg"] {
    width: 20px;
    height: 20px;
}

.nav-social-icon:hover {
    opacity: 0.8;
}

.nav-mobile-social {
    display: none;
}

.nav-overlay {
    display: none;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 120px 32px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 60%, rgba(196, 168, 130, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 20%, rgba(139, 110, 78, 0.08) 0%, transparent 60%);
}

.hero::before {
    content: '♩';
    position: absolute;
    top: 15%;
    right: 8%;
    font-size: 180px;
    color: var(--border);
    opacity: 0.5;
    pointer-events: none;
    font-family: serif;
    animation: floatNote 8s ease-in-out infinite;
}

@keyframes floatNote {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    position: relative;
    max-width: 800px;
    animation: fadeUp 1s ease both;
}

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

.hero-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    animation: fadeUp 1s 0.2s ease both;
}

.hero-name {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    color: var(--text);
    animation: fadeUp 1s 0.3s ease both;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto 40px;
    font-style: italic;
    font-family: var(--font-display);
    animation: fadeUp 1s 0.4s ease both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s 0.5s ease both;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-block;
    padding: 13px 32px;
    background: var(--accent);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 1px solid var(--accent);
    transition: all var(--transition);
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

.btn-secondary {
    display: inline-block;
    padding: 13px 32px;
    background: transparent;
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

.btn-sm {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-sm:hover { background: var(--accent); color: #fff; }

.link-arrow {
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
    transition: color var(--transition);
    white-space: nowrap;
}
.link-arrow:hover { color: var(--accent-dark); }

/* ── ABOUT SECTION ── */
.about-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Eğitim Listesi */
.edu-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    display: grid;
    gap: 2px;
}
.edu-item:last-child { border-bottom: none; }
.edu-degree {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}
.edu-item strong { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; }
.edu-item span { font-size: 14px; color: var(--text-muted); }
.edu-konu { font-size: 13px; color: var(--text-muted); font-style: italic; margin-top: 4px; }

/* ── CARDS ── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    background: var(--bg-light);
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-img img { transform: scale(1.04); }
.card-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    color: var(--accent-light);
}
.card-tag {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
}

.card-body { padding: 20px 24px 24px; }
.card-body h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-bottom: 4px; }
.card-year { font-size: 12px; color: var(--accent); font-weight: 500; display: block; margin-bottom: 8px; }
.card-body p { font-size: 14px; color: var(--text-muted); }

/* ── KİTAPLAR ── */
.kitap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.kitap-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

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

.kitap-card-cover {
    aspect-ratio: 2/3;
    overflow: hidden;
    background: var(--bg-light);
}

.kitap-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.kitap-card:hover .kitap-card-cover img {
    transform: scale(1.03);
}

.kitap-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--accent-light);
}

.kitap-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.kitap-card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.kitap-card-publisher {
    font-size: 13px;
    color: var(--accent);
}

.kitap-card-year {
    font-size: 12px;
    color: var(--text-muted);
}

.kitap-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
    margin-top: 4px;
    flex: 1;
}

.kitap-card-more {
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    margin-top: 8px;
}

.kitap-card:hover .kitap-card-more {
    text-decoration: underline;
}

/* Kitap detay sayfası */
.kitap-detail .kitap-back {
    display: inline-block;
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 32px;
    transition: color var(--transition);
}

.kitap-detail .kitap-back:hover {
    color: var(--accent-dark);
}

.kitap-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    font-size: 14px;
    color: var(--text-muted);
}
.kitap-breadcrumb a {
    color: var(--accent);
    transition: color var(--transition);
}
.kitap-breadcrumb a:hover {
    color: var(--accent-dark);
}
.kitap-breadcrumb-sep {
    color: var(--text-muted);
    opacity: 0.65;
}
.kitap-breadcrumb-current {
    color: var(--text);
}

.kitap-detail-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

.kitap-detail-cover {
    position: sticky;
    top: 100px;
}

.kitap-detail-cover img {
    width: 100%;
    display: block;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.kitap-detail-cover-placeholder {
    aspect-ratio: 2/3;
    background: var(--bg-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--accent-light);
}

.kitap-detail-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.25;
}

.kitap-detail-publisher {
    font-size: 1.05rem;
    color: var(--accent);
    margin-bottom: 4px;
}

.kitap-detail-meta-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.kitap-detail-meta-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kitap-detail-year {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.kitap-detail-isbn {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.kitap-detail-desc {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 28px;
}

.kitap-detail-link {
    display: inline-block;
    margin-top: 0;
}

/* ── EVENTS ── */
.event-page .event-head { margin-bottom: 2rem; }
.event-page .event-head .section-title { margin-bottom: 0; }
.event-page .event-head-past { margin-top: 4rem; }

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 520px), 1fr));
    gap: 1.5rem;
}

.event-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.event-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-light);
    box-shadow: var(--shadow-lg);
}

.event-card-cover {
    width: 100%;
    aspect-ratio: 16/7;
    object-fit: cover;
    display: block;
}

.event-card-body {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
}

.event-list { display: flex; flex-direction: column; gap: 0.75rem; }
.event-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.15rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.event-item:hover { border-color: var(--accent-light); box-shadow: var(--shadow); }

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    height: 58px;
    background: var(--accent);
    color: #fff;
    padding: 8px 6px;
    border-radius: 8px;
    text-align: center;
}
.event-day { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; line-height: 1; }
.event-month { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; }
.event-info { flex: 1; min-width: 0; }
.event-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}
.event-meta-row span {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
}
.event-info h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; line-height: 1.25; margin: 0 0 0.35rem; }
.event-location { font-size: 0.92rem; color: var(--text-muted); margin: 0 0 0.65rem; }
.event-desc { font-size: 0.95rem; color: var(--text); line-height: 1.65; margin: 0; }

/* CKEditor rich text boşluklarını normalize et (çift enter görünümü olmasın) */
.home-about-text,
.haber-ozet,
.haber-body,
.kitap-detail-desc,
.event-desc,
.bio-text,
.edu-konu-text,
.nota-body > div {
    white-space: normal;
}

.home-about-text p,
.haber-ozet p,
.haber-body p,
.kitap-detail-desc p,
.event-desc p,
.bio-text p,
.edu-konu-text p,
.nota-body > div p {
    margin: 0 0 0.85em;
}

.home-about-text p:last-child,
.haber-ozet p:last-child,
.haber-body p:last-child,
.kitap-detail-desc p:last-child,
.event-desc p:last-child,
.bio-text p:last-child,
.edu-konu-text p:last-child,
.nota-body > div p:last-child {
    margin-bottom: 0;
}
.event-past-date { font-size: 0.76rem; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.event-item-past { opacity: 0.8; }
.event-date-past { background: var(--text-muted); }

/* ── NEWS ── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.news-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.news-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.news-body { padding: 24px; }
.news-date { font-size: 12px; color: var(--accent); font-weight: 500; display: block; margin-bottom: 8px; }
.news-body h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
.news-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }

/* ── FOOTER ── */
.site-footer { background: var(--text); color: rgba(255,255,255,0.7); margin-top: 0; }
.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
    padding: 48px 32px;
}

.footer-brand .logo-name { color: #fff; font-size: 1.3rem; }
.footer-brand p { font-size: 12px; margin-top: 4px; }

.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-nav a:hover { color: #fff; }

.footer-social { display: flex; gap: 16px; justify-content: flex-end; }
.footer-social a { color: #fff9; transition: color var(--transition); }
.footer-social a:hover { color: #fff; }
.footer-social img { width: 16px; height: auto; filter: brightness(0) invert(1); opacity: 0.6; transition: opacity var(--transition); }
.footer-social img[src*="youtube.svg"] { width: 20px; height: 20px; }
.footer-social a:hover img { opacity: 1; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 32px;
    text-align: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }

/* ── İÇ SAYFALAR (sadece main.ic-sayfa içinde; anasayfa main'de bu sınıf yok, çakışma olmaz) ── */
#sayfa-icerigi.ic-sayfa .ic-baslik {
    margin-top: 0;
    padding: 20px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
#sayfa-icerigi.ic-sayfa .ic-baslik h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    margin-bottom: 12px;
}
#sayfa-icerigi.ic-sayfa .ic-baslik p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ── FORMS ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: var(--text-muted); letter-spacing: 0.04em; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    transition: border-color var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 140px; }

/* ── PAGINATION ── */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.pagination a, .pagination span {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    transition: all var(--transition);
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ── GALERI ── */
.galeri-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}
.galeri-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius);
    position: relative;
    cursor: pointer;
}
.galeri-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.galeri-item:hover img { transform: scale(1.06); }
.galeri-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 23, 20, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.galeri-item:hover .galeri-overlay { opacity: 1; }
.galeri-overlay span { color: #fff; font-size: 2rem; }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 32px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
    position: absolute; top: 20px; right: 24px;
    color: #fff; font-size: 2rem; cursor: pointer; background: none; border: none;
}

/* ── ALERT ── */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 14px;
}
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.alert-error { background: #ffeaea; color: #c62828; border: 1px solid #ffcdd2; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .two-col { grid-template-columns: 1fr; gap: 48px; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
    .footer-nav { justify-content: center; }
}

@media (max-width: 768px) {
    body { padding-top: 0; }
    .container { padding: 0 20px; }
    .section { padding: 60px 0; }

    .site-header {
        background: transparent !important;
        border-bottom: 0 !important;
        backdrop-filter: none !important;
        pointer-events: none;
    }
    .inner-page .header-spacer { display: none; }
    .nav-inner {
        justify-content: flex-start;
        height: 0;
        padding: 0;
        max-width: none;
    }
    .nav-toggle {
        position: fixed;
        top: calc(env(safe-area-inset-top, 0px) + 12px);
        left: 12px;
        background: rgba(249, 247, 244, 0.92);
        border: 1px solid var(--border);
        border-radius: 8px;
        width: 42px;
        height: 42px;
        padding: 0;
        align-items: center;
        justify-content: center;
        z-index: 1202;
        pointer-events: auto;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: min(82vw, 320px);
        height: 100vh;
        background: var(--bg);
        border-right: 1px solid var(--border);
        padding: 92px 24px 24px;
        gap: 18px;
        transform: translateX(-105%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.36s ease, opacity 0.32s ease, visibility 0s linear 0.36s;
        z-index: 1201;
    }
    .nav-links.open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: transform 0.36s ease, opacity 0.32s ease;
    }
    .nav-links.closing {
        transform: translateX(-105%);
        opacity: 0;
        visibility: visible;
        pointer-events: none;
    }
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        width: 100dvw;
        height: 100vh;
        height: 100dvh;
        display: block;
        border: 0;
        background: rgba(20, 20, 20, 0.24);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.32s ease, visibility 0s linear 0.32s;
        z-index: 1200;
    }
    .nav-overlay.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: opacity 0.32s ease;
    }
    .nav-toggle { display: flex; }
    .nav-social { display: none; }
    .nav-mobile-social {
        margin-top: auto;
        padding-top: 16px;
        border-top: 1px solid var(--border);
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
    }
    .nav-mobile-social .nav-social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
    }
    body.mobile-nav-open { overflow: hidden; }

    .hero { padding: 100px 20px 80px; }
    .hero::before { display: none; }

    .card-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .kitap-grid { grid-template-columns: 1fr; }

    .kitap-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .kitap-breadcrumb {
        margin-top: calc(env(safe-area-inset-top, 0px) + 44px);
        margin-bottom: 20px;
        font-size: 13px;
        gap: 6px;
    }
    .kitap-detail-cover { position: static; }
    .kitap-detail-meta {
        display: flex;
        flex-direction: column;
    }
    .kitap-detail-link {
        order: 4;
        margin-top: 2px;
        margin-bottom: 14px;
        align-self: flex-start;
    }
    .kitap-detail-desc {
        order: 5;
        font-size: 0.95rem;
        line-height: 1.62;
        margin-bottom: 16px;
    }

    .event-grid { grid-template-columns: 1fr; }
    .event-card-body { flex-direction: column; }
    .event-item { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ============================================
   Anasayfa — .home-page ile kapsüllü stiller
   ============================================ */

.home-page {
    --home-bg: #faf9f7;
    --home-bg-2: #f3f1ed;
    --home-card: #ffffff;
    --home-accent: #8b7355;
    --home-accent-hover: #6b5844;
    --home-text: #2c2a28;
    --home-text-2: #5c5854;
    --home-text-3: #8a8580;
    --home-line: #e8e4df;
    --home-shadow: 0 4px 24px rgba(44, 42, 40, 0.06);
    --home-shadow-hover: 0 12px 40px rgba(44, 42, 40, 0.1);
    --home-w: 1100px;
    --home-pad: clamp(20px, 5vw, 40px);
}

body.home-page,
body.home-page #sayfa-icerigi {
    background: var(--home-bg);
}

.home-page .site-header {
    background: rgba(250, 249, 247, 0.95) !important;
    border-bottom: 1px solid var(--home-line) !important;
    backdrop-filter: blur(10px);
    transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.home-page .site-header .nav-links a {
    color: var(--home-text) !important;
}
.home-page .site-header .nav-links a::after {
    background: var(--home-accent) !important;
}
.home-page .site-header .nav-toggle span {
    background: var(--home-text) !important;
}
.home-page .site-header .nav-social-icon {
    color: var(--home-text) !important;
}
.home-page .site-header .nav-social-icon img {
    filter: none;
    opacity: 1;
}
.home-page.scrolled .site-header {
    background: rgba(250, 249, 247, 0.98) !important;
    box-shadow: var(--home-shadow);
}

@media (max-width: 768px) {
    .home-page .nav-overlay.open {
        background: rgba(28, 27, 26, 0.24);
    }
}

.home-page .home-wrap {
    max-width: var(--home-w);
    margin: 0 auto;
    padding-left: var(--home-pad);
    padding-right: var(--home-pad);
}

.home-page .home-sec {
    padding-top: clamp(64px, 12vw, 100px);
    padding-bottom: clamp(64px, 12vw, 100px);
}

.home-page .home-sec-head {
    margin-bottom: 2.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--home-line);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
}
.home-page .home-sec-head::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 3.5rem;
    height: 2px;
    background: var(--home-accent);
    opacity: 0.7;
}

.home-page .home-sec-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--home-accent);
    display: block;
    margin-bottom: 0.4rem;
}

.home-page .home-sec-title {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.8vw, 2.35rem);
    font-weight: 300;
    color: var(--home-text);
    line-height: 1.22;
    margin: 0;
    letter-spacing: -0.02em;
}

.home-page .home-sec-more {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--home-accent);
    margin-left: auto;
    transition: color 0.2s, letter-spacing 0.2s;
}
.home-page .home-sec-more:hover {
    color: var(--home-accent-hover);
    letter-spacing: 0.02em;
}

.home-page .home-hero {
    min-height: 110vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem var(--home-pad) 5rem;
    box-sizing: border-box;
}

.home-page .home-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 30%, rgba(139, 115, 85, 0.06) 0%, transparent 55%),
        var(--home-bg);
    pointer-events: none;
}

.home-page .home-hero-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--home-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.home-page .home-hero-photo {
    order: 1;
    overflow: hidden;
    box-shadow: var(--home-shadow-hover);
    aspect-ratio: 3/4;
    max-height: 75vh;
    background: var(--home-bg-2);
}
.home-page .home-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-page .home-hero-photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--home-text-3);
    border: 2px dashed var(--home-line);
    border-radius: 12px;
    background: var(--home-bg-2);
}

.home-page .home-hero-content { order: 2; text-align: left; }

.home-page .home-hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--home-accent);
    margin: 0 0 1rem;
}

.home-page .home-hero-name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--home-text);
    margin: 0 0 0.75rem;
}

.home-page .home-hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 300;
    font-style: italic;
    color: var(--home-text-2);
    line-height: 1.55;
    margin: 0 0 1.75rem;
}

.home-page .home-hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.home-page .home-btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
    box-sizing: border-box;
}

.home-page .home-btn-primary {
    background: var(--home-accent);
    color: #fff;
    border: 1px solid var(--home-accent);
}
.home-page .home-btn-primary:hover {
    background: var(--home-accent-hover);
    border-color: var(--home-accent-hover);
    color: #fff;
    transform: translateY(-2px);
}

.home-page .home-btn-outline {
    background: transparent;
    color: var(--home-text);
    border: 1px solid var(--home-line);
}
.home-page .home-btn-outline:hover {
    border-color: var(--home-accent);
    color: var(--home-accent);
    transform: translateY(-2px);
}

.home-page .home-btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    border: 1px solid var(--home-accent);
    color: var(--home-accent);
    background: transparent;
}
.home-page .home-btn-sm:hover {
    background: var(--home-accent);
    color: #fff;
}

.home-page .home-about {
    position: relative;
    background: linear-gradient(180deg, var(--home-bg) 0%, var(--home-bg-2) 12%, var(--home-bg-2) 88%, var(--home-bg) 100%);
    overflow: hidden;
}

.home-page .home-about-bg {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background:
        radial-gradient(ellipse 100% 80% at 0% 50%, rgba(139, 115, 85, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 100% 50%, rgba(139, 115, 85, 0.03) 0%, transparent 45%);
    pointer-events: none;
}

.home-page .home-about-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(3rem, 8vw, 5rem);
    align-items: start;
}

.home-page .home-about-main {
    background: var(--home-card);
    border-radius: 12px;
    padding: clamp(2rem, 4vw, 2.75rem);
    box-shadow: var(--home-shadow);
    border: 1px solid var(--home-line);
    position: relative;
}

.home-page .home-about-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 4rem;
    background: linear-gradient(180deg, var(--home-accent), transparent);
    border-radius: 0 0 4px 0;
}

.home-page .home-about-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--home-accent);
    display: block;
    margin-bottom: 0.75rem;
}

.home-page .home-about-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.1rem);
    font-weight: 300;
    color: var(--home-text);
    line-height: 1.25;
    margin: 0 0 1.5rem;
    letter-spacing: -0.01em;
}

.home-page .home-about-text-wrap { margin-bottom: 1.5rem; }

.home-page .home-about-text {
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--home-text-2);
    margin: 0;
}

.home-page .home-about-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--home-accent);
    transition: color 0.2s, letter-spacing 0.2s;
}
.home-page .home-about-link:hover {
    color: var(--home-accent-hover);
    letter-spacing: 0.02em;
}

.home-page .home-about-edu { padding-top: 0.15rem; }

.home-page .home-about-edu-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--home-accent);
    display: block;
    margin-bottom: 1.5rem;
}

.home-page .home-edu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.home-page .home-edu-list::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 1px;
    background: linear-gradient(180deg, var(--home-accent) 0%, var(--home-line) 100%);
    opacity: 0.6;
}

.home-page .home-edu-item {
    position: relative;
    padding-left: 2rem;
    padding-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.home-page .home-edu-item:last-child { padding-bottom: 0; }

.home-page .home-edu-marker {
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--home-card);
    border: 2px solid var(--home-accent);
    box-shadow: 0 0 0 3px var(--home-bg-2);
}

.home-page .home-edu-content { display: flex; flex-direction: column; gap: 0.2rem; }

.home-page .home-edu-degree {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--home-accent);
}

.home-page .home-edu-item strong {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--home-text);
    line-height: 1.3;
}

.home-page .home-edu-detail { font-size: 0.9rem; color: var(--home-text-2); }

.home-page .home-edu-item em {
    font-size: 0.82rem;
    color: var(--home-text-3);
    font-style: italic;
}

.home-page .home-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: 1.5rem;
}

.home-page .home-work-card {
    position: relative;
    display: block;
    background: var(--home-card);
    border: 1px solid var(--home-line);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--home-shadow);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.home-page .home-work-card:hover {
    border-color: rgba(139, 115, 85, 0.25);
    transform: translateY(-4px);
    box-shadow: var(--home-shadow-hover);
}

.home-page .home-work-card-img,
.home-page .home-work-card-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    vertical-align: middle;
}
.home-page .home-work-card:hover .home-work-card-img {
    transition: transform 0.5s;
    transform: scale(1.05);
}

.home-page .home-work-card-placeholder {
    background: var(--home-bg-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(139, 115, 85, 0.25);
    font-family: var(--font-display);
}

.home-page .home-work-card-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--home-accent);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.65rem;
    border-radius: 4px;
}

.home-page .home-work-card-content { padding: 1.25rem; }

.home-page .home-work-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--home-text);
    margin: 0 0 0.35rem;
    line-height: 1.3;
}

.home-page .home-work-card-content time {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--home-accent);
    display: block;
    margin-bottom: 0.5rem;
}

.home-page .home-work-card-content p {
    font-size: 0.9rem;
    color: var(--home-text-2);
    line-height: 1.55;
    margin: 0;
}

.home-page .home-spotify {
    background: var(--home-bg-2);
}

.home-page .home-spotify-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
    gap: 2rem;
}

.home-page .home-spotify-card {
    background: var(--home-card);
    border: 1px solid var(--home-line);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: var(--home-shadow);
}

.home-page .home-spotify-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--home-text);
    margin: 0 0 1rem;
    line-height: 1.3;
}

.home-page .home-spotify-card iframe {
    display: block;
    width: 100%;
    min-height: 352px;
}

.home-page .home-events-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.home-page .home-event-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.15rem;
    background: var(--home-card);
    border: 1px solid var(--home-line);
    border-radius: 8px;
    box-shadow: var(--home-shadow);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.home-page .home-event-card:hover {
    border-color: rgba(139, 115, 85, 0.2);
    box-shadow: var(--home-shadow-hover);
    transform: translateY(-2px);
}

.home-page .home-event-date {
    flex-shrink: 0;
    width: 3.25rem;
    height: 3.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--home-accent);
    color: #fff;
    border-radius: 8px;
    text-align: center;
}

.home-page .home-event-main { flex: 1; min-width: 0; }
.home-page .home-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 0.35rem;
}
.home-page .home-event-meta span {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--home-accent);
    font-weight: 600;
}

.home-page .home-event-day {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1;
    display: block;
}

.home-page .home-event-month {
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-page .home-event-info h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--home-text);
    margin: 0 0 0.35rem;
}

.home-page .home-event-info p { font-size: 0.9rem; color: var(--home-text-2); margin: 0; }
.home-page .home-event-desc { margin-top: 0.45rem; line-height: 1.5; }

.home-page .home-news {
    background: var(--home-bg-2);
}

.home-page .home-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: 1.5rem;
}

.home-page .home-news-card {
    background: var(--home-card);
    border: 1px solid var(--home-line);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--home-shadow);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.home-page .home-news-card:hover {
    border-color: rgba(139, 115, 85, 0.2);
    transform: translateY(-3px);
    box-shadow: var(--home-shadow-hover);
}

.home-page .home-news-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.home-page .home-news-card-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    vertical-align: middle;
}
.home-page .home-news-card:hover .home-news-card-img {
    transition: transform 0.5s;
    transform: scale(1.04);
}

.home-page .home-news-card-placeholder {
    background: var(--home-bg-2);
    min-height: 120px;
}

.home-page .home-news-card-body { padding: 1.25rem; }

.home-page .home-news-date {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--home-accent);
    display: block;
    margin-bottom: 0.5rem;
}

.home-page .home-news-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--home-text);
    margin: 0 0 0.5rem;
    line-height: 1.35;
}

.home-page .home-news-card-body p {
    font-size: 0.9rem;
    color: var(--home-text-2);
    line-height: 1.55;
    margin: 0;
}

.home-page .home-news-card-body .home-sec-more {
    display: inline-block;
    margin-top: 0.75rem;
}

@media (max-width: 900px) {
    .home-page .home-about-wrap {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .home-page .home-about-edu { padding-top: 0; }
    .home-page .home-edu-list::before { left: 6px; }
    .home-page .home-works-grid,
    .home-page .home-news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-footer { margin-top: 0; }
    .footer-inner {
        gap: 22px;
        padding: 34px 20px 28px;
    }
    .footer-brand .logo-name {
        font-size: 1.15rem;
        letter-spacing: 0.02em;
    }
    .footer-brand p {
        font-size: 11px;
        color: rgba(255,255,255,0.6);
    }
    .footer-nav {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 16px;
    }
    .footer-nav a {
        font-size: 12px;
        padding: 6px 10px;
        border-radius: 0;
        border: 0;
        background: rgba(255,255,255,0.03);
        line-height: 1.2;
    }
    .footer-social {
        gap: 10px;
        justify-content: center;
    }
    .footer-social a {
        width: 36px;
        height: 36px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.14);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.03);
    }
    .footer-social img {
        opacity: 0.85;
    }
    .footer-bottom {
        padding: 14px 20px calc(14px + env(safe-area-inset-bottom, 0px));
    }
    .footer-bottom p {
        font-size: 11px;
        line-height: 1.5;
    }

    .home-page .home-hero {
        min-height: auto;
        padding-top: calc(70px + 1.5rem);
        padding-bottom: 3.25rem;
    }
    .home-page .home-hero-wrap {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    .home-page .home-hero-photo {
        order: 1;
        max-height: 64vh;
        margin: 0 auto 0.25rem;
        max-width: min(86vw, 340px);
        overflow: hidden;
    }
    .home-page .home-hero-content {
        order: 2;
        text-align: center;
        padding: 0 0.35rem;
    }
    .home-page .home-hero-eyebrow { margin-bottom: 0.75rem; }
    .home-page .home-hero-tagline {
        margin-bottom: 1.35rem;
        line-height: 1.5;
    }
    .home-page .home-hero-cta { justify-content: center; }
    .home-page .home-hero-name {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
    .home-page .home-sec {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
    .home-page .home-sec-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .home-page .home-sec-more { margin-left: 0; }
    .home-page .home-event-card { flex-wrap: wrap; gap: 0.9rem; }
    .home-page .home-event-date { width: 3rem; height: 3rem; }
    .home-page .home-event-day { font-size: 1.25rem; }
}