/* =========================================================================
   EON Orienteering — modern stil
   ========================================================================= */

:root {
    --red:        #e2231a;
    --red-dark:   #b81a12;
    --ink:        #1a1c22;
    --ink-soft:   #3a3d47;
    --muted:      #6b7080;
    --line:       #e7e9ee;
    --bg:         #ffffff;
    --bg-alt:     #f6f7f9;
    --white:      #ffffff;
    --radius:     14px;
    --radius-sm:  9px;
    --shadow:     0 10px 30px rgba(20, 22, 30, .08);
    --shadow-lg:  0 24px 60px rgba(20, 22, 30, .16);
    --container:  1200px;
    --head:       'Barlow Condensed', 'Inter', sans-serif;
    --body:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --t:          .28s cubic-bezier(.4, 0, .2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
    font-family: var(--body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}
/* Uzun kelime/URL/e-posta taşmasını engelle (mobil) */
h1, h2, h3, h4, p, a, span, li, td, blockquote { overflow-wrap: break-word; }
img { max-width: 100%; display: block; height: auto; }
picture { display: contents; }
a { color: inherit; text-decoration: none; }

/* ---------- Erişilebilirlik ---------- */
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 1000; background: var(--red); color: #fff;
    padding: 10px 20px; border-radius: 0 0 10px 10px; font-family: var(--head); font-weight: 600;
    text-transform: uppercase; letter-spacing: .5px; transition: top .2s ease; }
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }
a:focus-visible, button:focus-visible, .btn:focus-visible, .nav__link:focus-visible,
[tabindex]:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 6px; }
.slant-panel:focus-visible, .tmember.is-clickable:focus-visible { outline-offset: -3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

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

/* ---------- Tipografi ---------- */
h1, h2, h3, h4 { font-family: var(--head); line-height: 1.08; font-weight: 700; letter-spacing: .2px; }
.h3 { font-family: var(--head); font-size: 1.9rem; }

/* ---------- Butonlar ---------- */
.btn {
    display: inline-flex; align-items: center; gap: .5em;
    font-family: var(--head); font-weight: 600; font-size: 1.05rem;
    letter-spacing: .5px; text-transform: uppercase;
    padding: .72em 1.6em; border-radius: 999px; cursor: pointer;
    border: 2px solid transparent; transition: var(--t); white-space: nowrap;
}
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(226, 35, 26, .32); }
.btn--outline { background: transparent; border-color: var(--red); color: var(--red); }
.btn--outline:hover { background: var(--red); color: #fff; }
.btn--lg { font-size: 1.15rem; padding: .85em 2em; }

/* ---------- Üst bar ---------- */
.topbar { background: var(--ink); color: #cfd2dc; font-size: .82rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 40px; gap: 16px; }
.topbar__contact { display: flex; gap: 22px; align-items: center; }
.topbar__contact a { display: inline-flex; align-items: center; gap: 7px; color: #cfd2dc; font-weight: 500; transition: var(--t); }
.topbar__contact a:hover { color: #fff; }
.topbar__contact svg { width: 13px; height: 13px; color: var(--red); flex: none; }
.topbar__right { display: flex; align-items: center; gap: 18px; }
.topbar__partof { color: #cfd2dc; letter-spacing: .3px; transition: var(--t); }
.topbar__partof strong { color: #fff; font-weight: 600; }
.topbar__partof:hover { color: #fff; }
.topbar__partof:hover strong { color: var(--red); }
.topbar__social { display: flex; gap: 6px; }
.topbar__social a { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; transition: var(--t); }
.topbar__social a:hover { background: var(--red); color: #fff; }
.topbar__social svg { width: 15px; height: 15px; }
.langswitch { display: flex; gap: 4px; }
.langswitch__item { padding: 2px 8px; border-radius: 6px; font-weight: 600; color: #cfd2dc; transition: var(--t); }
.langswitch__item.is-active, .langswitch__item:hover { background: var(--red); color: #fff; }

/* ---------- Header / nav ---------- */
.header {
    position: sticky; top: 0; z-index: 50; background: #fff;
    border-bottom: 1px solid var(--line); transition: var(--t);
}
.header.is-scrolled { box-shadow: var(--shadow); }
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 88px; gap: 20px; }
.header__logo img { height: clamp(38px, 4.4vw, 50px); width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
    font-family: var(--head); font-weight: 600; font-size: 1.08rem;
    text-transform: uppercase; letter-spacing: .6px; color: var(--ink);
    padding: 10px 14px; border-radius: 8px; position: relative; transition: var(--t);
}
.nav__link::after {
    content: ''; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px;
    background: var(--red); transform: scaleX(0); transform-origin: left; transition: var(--t);
}
.nav__link:hover { color: var(--red); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--red); }

.header__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.header__toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: var(--t); }
.header__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Yatık panelli hero (imza tasarım) ---------- */
.slant-hero { position: relative; overflow: hidden; background: #12141b; }
.slant-hero__intro { position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: 6; padding-top: 46px; text-align: center; width: 100%; pointer-events: none; }
.slant-hero__eyebrow { display: inline-block; font-family: var(--head); text-transform: uppercase; letter-spacing: 3px; font-weight: 600; color: #ff9d97; font-size: .95rem; margin-bottom: 8px; text-shadow: 0 2px 10px rgba(0,0,0,.5); }
.slant-hero__title { font-size: clamp(1.9rem, 4vw, 3.2rem); text-transform: uppercase; color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.6); }

.slant-panels { display: flex; height: 90vh; min-height: 580px; overflow: hidden; transform: skewX(-7deg); margin: 0 -3vw; }
.slant-panel { position: relative; flex: 1; overflow: hidden; transition: flex .45s cubic-bezier(.4,0,.2,1); border-left: 2px solid rgba(255,255,255,.14); }
.slant-panel:first-child { border-left: 0; }
.slant-panel:hover { flex: 1.7; }
.slant-panel__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: skewX(8deg) scale(1.4); transition: transform .7s ease; }
.slant-panel:hover .slant-panel__bg { transform: skewX(8deg) scale(1.5); }
.slant-panel__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,20,27,.9) 0%, rgba(18,20,27,.3) 55%, rgba(18,20,27,.55) 100%); transition: background .45s; }
.slant-panel:hover .slant-panel__overlay { background: linear-gradient(to top, rgba(226,35,26,.72) 0%, rgba(18,20,27,.3) 60%, rgba(18,20,27,.5) 100%); }
.slant-panel__content { position: absolute; inset: auto 0 0 0; padding: 0 12% 58px; transform: skewX(8deg); text-align: center; color: #fff; z-index: 2; }
.slant-panel:first-child .slant-panel__content { padding-left: 20%; }
.slant-panel:last-child .slant-panel__content { padding-right: 20%; }
.slant-panel__title { font-size: clamp(1.3rem, 1.7vw, 1.75rem); text-transform: uppercase; line-height: 1.12; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.slant-panel__date { color: #e6e7ec; font-weight: 500; margin: 10px 0 18px; font-size: .95rem; }
.slant-panel__btn { opacity: 0; transform: translateY(12px); transition: opacity .35s, transform .35s, background .2s; }
.slant-panel:hover .slant-panel__btn { opacity: 1; transform: translateY(0); }

@media (max-width: 860px) {
    .slant-panels { flex-direction: column; transform: none; margin: 0; height: auto; min-height: 0; }
    .slant-panel { flex: none !important; height: 210px; border-left: 0; border-top: 2px solid rgba(255,255,255,.12); }
    .slant-panel:first-child { border-top: 0; }
    .slant-panel__bg { transform: scale(1.02); }
    .slant-panel:hover .slant-panel__bg { transform: scale(1.08); }
    .slant-panel__content { transform: none; padding: 0 22px 22px; }
    .slant-panel__btn { opacity: 1; transform: none; }
    .slant-hero__intro { position: static; transform: none; padding: 76px 22px 18px; }
    .slant-hero { background: #12141b; }
}

/* ---------- Section head ---------- */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section--center { text-align: center; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(34px, 5vw, 54px); }
.section-head--left { text-align: left; margin-inline: 0; }
.section-head__kicker { display: inline-block; font-family: var(--head); text-transform: uppercase; letter-spacing: 3px; color: var(--red); font-weight: 600; margin-bottom: 10px; }
.section-head__title { font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; }

/* ---------- Events ---------- */
.events { padding: clamp(56px, 8vw, 96px) 0; background: var(--bg-alt); }
.events__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.event-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--t); display: flex; flex-direction: column; }
.event-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.event-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.event-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.event-card:hover .event-card__media img { transform: scale(1.08); }
.event-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.event-card__title { font-size: 1.45rem; text-transform: uppercase; }
.event-card__date { color: var(--muted); font-weight: 500; font-size: .95rem; }
.event-card__body .btn { margin-top: auto; align-self: flex-start; }

/* ---------- About (editoryal) ---------- */
.about2 { padding: clamp(64px, 8vw, 104px) 0;
    background: radial-gradient(120% 60% at 12% 0%, #fff 0%, #fdfaf7 55%, #fbf6f2 100%); }
.about2__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 76px); align-items: center; }

/* Görsel + rozet */
.about2__media { position: relative; }
.about2__frame { position: relative; border-radius: 20px; overflow: hidden;
    box-shadow: 0 30px 70px rgba(60,45,30,.16); }
.about2__frame::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.35); border-radius: 20px; pointer-events: none; }
.about2__frame img { width: 100%; aspect-ratio: 5/4; object-fit: cover; display: block; transition: transform .8s ease; }
.about2__media:hover .about2__frame img { transform: scale(1.04); }
.about2__badge { position: absolute; right: -18px; bottom: -22px; width: 132px; height: 132px; border-radius: 50%;
    background: var(--red); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 10px; box-shadow: 0 18px 40px rgba(226,35,26,.36); border: 5px solid #fff; }
.about2__badge-n { font-family: var(--head); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.about2__badge-l { font-size: .68rem; text-transform: uppercase; letter-spacing: .6px; line-height: 1.3; margin-top: 5px; opacity: .95; }

/* Metin */
.about2__eyebrow { font-family: var(--body); text-transform: uppercase; letter-spacing: 3px; font-size: .8rem; font-weight: 700; color: var(--red); }
.about2__h { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: clamp(2rem, 4vw, 2.9rem);
    color: #2b2f36; line-height: 1.1; margin: 14px 0 20px; }
.about2__lead p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.8; margin-bottom: 16px; }
.about2__features { list-style: none; padding: 0; margin: 26px 0 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 26px; }
.about2__features li { display: flex; gap: 12px; align-items: flex-start; font-size: .96rem; color: #3a3d47; line-height: 1.45; }
.about2__check { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
    background: rgba(226,35,26,.1); color: var(--red); margin-top: 1px; }
.about2__check svg { width: 15px; height: 15px; }
.about2__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Haritalar sayfası ---------- */
.maps-intro { padding: clamp(48px, 6vw, 80px) 0 0; }
.maps-intro__inner { max-width: 860px; }
.maps-intro__eyebrow { font-family: var(--body); text-transform: uppercase; letter-spacing: 3px; font-size: .8rem; font-weight: 700; color: var(--red); }
.maps-intro__lead { font-family: 'Playfair Display', Georgia, serif; font-weight: 500; font-size: clamp(1.35rem, 2.6vw, 1.9rem);
    line-height: 1.45; color: #2b2f36; margin-top: 16px; }

/* Interaktif harita gezgini */
.mx { padding: clamp(40px, 5vw, 64px) 0 clamp(56px, 8vw, 96px); }
.mx-head { text-align: center; max-width: 640px; margin: 0 auto clamp(26px, 4vw, 40px); }
.mx-head__kick { font-family: var(--head); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; color: var(--red); font-size: 1rem; }
.mx-head__hint { color: var(--muted); font-size: .95rem; margin-top: 8px; }

/* Bölge seçici kartlar */
.mx-regions { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-bottom: clamp(20px, 2.6vw, 30px); }
.mx-region { display: flex; align-items: center; gap: 10px; padding: 12px 12px; background: #fff; border: 1px solid var(--line);
    border-radius: 14px; cursor: pointer; text-align: left; transition: var(--t); }
.mx-region:hover { border-color: rgba(226,35,26,.4); transform: translateY(-3px); box-shadow: var(--shadow); }
.mx-region.is-active { border-color: var(--red); box-shadow: 0 12px 30px rgba(226,35,26,.18); }
.mx-region__pin { flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
    background: rgba(226,35,26,.1); color: var(--red); transition: var(--t); }
.mx-region.is-active .mx-region__pin { background: var(--red); color: #fff; }
.mx-region__pin svg { width: 18px; height: 18px; }
.mx-region__meta { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.mx-region__name { font-family: var(--head); font-weight: 700; text-transform: uppercase; letter-spacing: .2px; font-size: .92rem;
    color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mx-region__count { font-size: .74rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Sahne — Google Maps */
.mx-stage { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); background: var(--bg-alt); }
.mx-map { width: 100%; height: clamp(380px, 56vh, 560px); }
.mx-map img { max-width: none; }
.mx-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 24px; z-index: 2;
    background: linear-gradient(160deg, #1a1c22, #241318); }
.mx-overlay__box { text-align: center; max-width: 420px; color: #e6e7ec; }
.mx-overlay__box span { font-size: 2.6rem; display: block; margin-bottom: 12px; }
.mx-overlay__box p { color: #b9bdc9; line-height: 1.6; margin-bottom: 18px; }

/* Google InfoWindow (hover ipucu) içeriği */
.mx-gtip { display: flex; gap: 10px; align-items: center; max-width: 240px; }
.mx-gtip__img { width: 64px; height: 48px; flex: none; border-radius: 6px; background: var(--bg-alt) center/cover no-repeat; }
.mx-gtip__body { display: flex; flex-direction: column; gap: 2px; }
.mx-gtip__body strong { font-size: .92rem; color: var(--ink); }
.mx-gtip__body span { font-size: .8rem; color: var(--muted); }

/* Haritalar hero — sinematik karartma */
.pagehero--tall { min-height: clamp(360px, 46vh, 480px); }
.pagehero--maps .pagehero__overlay {
    background:
        linear-gradient(180deg, rgba(15,17,22,.10) 0%, rgba(15,17,22,.22) 40%, rgba(15,17,22,.80) 100%),
        linear-gradient(90deg, rgba(15,17,22,.55) 0%, rgba(15,17,22,.20) 42%, transparent 62%);
}
.pagehero--maps .pagehero__content { padding-bottom: clamp(48px, 6vw, 72px); }
.pagehero--maps .pagehero__title { text-shadow: 0 3px 24px rgba(0,0,0,.5); }
.pagehero--maps .pagehero__sub { max-width: 60ch; text-shadow: 0 2px 12px rgba(0,0,0,.5); }

/* Haritalarımızın farkı */
.maps-why { padding: clamp(56px, 8vw, 96px) 0; background:
    radial-gradient(120% 60% at 50% 0%, #fff 0%, #fdfaf7 55%, #fbf6f2 100%); }
.maps-why__h { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: clamp(2rem, 4vw, 2.9rem); color: #2b2f36; line-height: 1.1; }
.maps-why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.4vw, 30px); }
.mfeat { background: #fff; border: 1px solid #efe9e3; border-radius: 16px; padding: 28px 24px;
    box-shadow: 0 10px 30px rgba(60,45,30,.05); transition: transform .3s, box-shadow .3s; }
.mfeat:hover { transform: translateY(-5px); box-shadow: 0 20px 46px rgba(60,45,30,.1); }
.mfeat__n { font-family: var(--head); font-weight: 700; font-size: 1rem; color: var(--red); }
.mfeat__t { font-size: 1.2rem; text-transform: none; color: #2b2f36; margin: 12px 0 8px; }
.mfeat__d { color: var(--muted); font-size: .93rem; line-height: 1.65; }

/* Harita CTA bandı */
.maps-cta { padding: 0 0 clamp(56px, 8vw, 90px); }
.maps-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 26px 40px; flex-wrap: wrap;
    background: linear-gradient(120deg, #1a1c22 0%, #2a1614 100%); border-radius: 22px; padding: clamp(32px, 4vw, 52px);
    position: relative; overflow: hidden; }
.maps-cta__inner::after { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 140% at 100% 0%, rgba(226,35,26,.28), transparent 60%); pointer-events: none; }
.maps-cta__h { position: relative; font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: clamp(1.5rem, 3vw, 2.1rem); color: #fff; line-height: 1.2; }
.maps-cta__t { position: relative; color: #c9cdd8; margin-top: 10px; max-width: 52ch; line-height: 1.7; }
.maps-cta__inner .btn { position: relative; flex: none; }

/* ---------- Yorumlar sayfası ---------- */
.tst2 { padding: clamp(56px, 8vw, 100px) 0 clamp(40px, 5vw, 60px); background:
    radial-gradient(120% 60% at 50% 0%, #fff 0%, #fdfaf7 55%, #fbf6f2 100%); }
.tst2__h { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: clamp(2rem, 4vw, 2.9rem); color: #2b2f36; line-height: 1.1; }
.tst2__lead { color: var(--muted); margin-top: 16px; font-size: 1.06rem; line-height: 1.7; }

/* Ortak avatar */
.tst-ava { flex: none; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
    background: var(--red); color: #fff; font-family: var(--head); font-weight: 700; font-size: 1.15rem; letter-spacing: .5px; }
.tst-ava--sm { width: 44px; height: 44px; font-size: 1rem; }

/* Öne çıkan alıntı */
.tst-feature { position: relative; max-width: 900px; margin: 0 auto; background: #fff; border: 1px solid #efe9e3;
    border-radius: 22px; padding: clamp(34px, 5vw, 60px); box-shadow: 0 24px 60px rgba(60,45,30,.10); text-align: center; }
.tst-feature__mark { font-family: 'Playfair Display', Georgia, serif; font-size: 6rem; line-height: .7; color: var(--red); opacity: .18; height: 46px; }
.tst-feature__quote { font-family: 'Playfair Display', Georgia, serif; font-weight: 500; font-style: italic;
    font-size: clamp(1.3rem, 2.6vw, 1.95rem); line-height: 1.5; color: #2b2f36; margin: 10px auto 28px; max-width: 40ch; }
.tst-feature__by { display: inline-flex; align-items: center; gap: 14px; }
.tst-feature__meta { text-align: left; display: flex; flex-direction: column; }
.tst-feature__name { font-family: var(--head); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--ink); }
.tst-feature__loc { color: var(--red); font-size: .85rem; font-weight: 600; }

/* Diğer yorumlar ızgarası */
.tst2-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 28px); margin-top: clamp(28px, 4vw, 44px); }
.tst-card { background: #fff; border: 1px solid #efe9e3; border-radius: 18px; padding: 28px 26px;
    box-shadow: 0 12px 32px rgba(60,45,30,.06); display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; }
.tst-card:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(60,45,30,.12); }
.tst-card__stars { color: #f4b400; letter-spacing: 2px; font-size: .95rem; margin-bottom: 12px; }
.tst-card__quote { color: var(--ink-soft); line-height: 1.7; font-size: 1rem; flex: 1; margin-bottom: 20px; }
.tst-card__by { display: flex; align-items: center; gap: 12px; }
.tst-card__meta { display: flex; flex-direction: column; }
.tst-card__name { font-family: var(--head); font-weight: 700; text-transform: uppercase; letter-spacing: .4px; font-size: .95rem; color: var(--ink); }
.tst-card__loc { color: var(--red); font-size: .82rem; font-weight: 600; }

/* CTA */
.tst-cta { padding: 0 0 clamp(56px, 8vw, 96px); background: linear-gradient(180deg, #fbf6f2, #fff 40%); }
.tst-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 26px 40px; flex-wrap: wrap;
    background: linear-gradient(120deg, #1a1c22 0%, #2a1614 100%); border-radius: 22px; padding: clamp(32px, 4vw, 52px);
    position: relative; overflow: hidden; }
.tst-cta__inner::after { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 140% at 100% 0%, rgba(226,35,26,.28), transparent 60%); pointer-events: none; }
.tst-cta__h { position: relative; font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: clamp(1.5rem, 3vw, 2.1rem); color: #fff; line-height: 1.2; }
.tst-cta__t { position: relative; color: #c9cdd8; margin-top: 10px; max-width: 52ch; line-height: 1.7; }
.tst-cta__inner .btn { position: relative; flex: none; }

/* ---------- Galeri (albümlü) ---------- */
.gal { padding: clamp(56px, 8vw, 96px) 0 clamp(30px, 4vw, 50px); }
.gal__h { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: clamp(2rem, 4vw, 2.9rem); color: #2b2f36; line-height: 1.1; }
.gal__lead { color: var(--muted); margin-top: 16px; font-size: 1.04rem; line-height: 1.7; }

/* Filtre çipleri */
.gal-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: clamp(24px, 3vw, 36px); }
.gal-chip { border: 1.5px solid var(--line); background: #fff; color: var(--ink-soft); font-family: var(--head); font-weight: 600;
    text-transform: uppercase; letter-spacing: .5px; font-size: .85rem; padding: 9px 20px; border-radius: 999px; cursor: pointer; transition: var(--t); }
.gal-chip:hover { border-color: var(--red); color: var(--red); }
.gal-chip.is-active { background: var(--red); border-color: var(--red); color: #fff; }
.gal-chip__n { opacity: .6; font-size: .8em; margin-left: 2px; }

/* Albüm kartları (gerçek kapak + Google Photos bağlantısı) */
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 24px); }
.gal-card { display: flex; flex-direction: column; background: #fff; border: 1px solid #efe9e3; border-radius: 16px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(60,45,30,.06); transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s; }
.gal-card:hover { transform: translateY(-6px); box-shadow: 0 24px 54px rgba(60,45,30,.15); }
.gal-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-alt); }
.gal-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gal-card:hover .gal-card__media img { transform: scale(1.07); }
.gal-card__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,12,10,.62), transparent 46%); }
.gal-card__tag { position: absolute; left: 12px; top: 12px; z-index: 2; background: rgba(226,35,26,.94); color: #fff;
    font-family: var(--head); font-weight: 600; text-transform: uppercase; letter-spacing: .4px; font-size: .72rem;
    padding: 5px 12px; border-radius: 999px; box-shadow: 0 4px 12px rgba(0,0,0,.3); }
.gal-card__open { position: absolute; left: 12px; bottom: 12px; z-index: 2; display: inline-flex; align-items: center; gap: 7px;
    color: #fff; font-family: var(--head); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; font-size: .78rem;
    opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; }
.gal-card:hover .gal-card__open, .gal-card:focus-visible .gal-card__open { opacity: 1; transform: translateY(0); }
.gal-card__open svg { width: 15px; height: 15px; }
.gal-card__body { padding: 16px 18px 20px; }
.gal-card__title { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: 1.12rem; color: #2b2f36; line-height: 1.3; }

/* Detay modalı */
.mx-modal { position: fixed; inset: 0; z-index: 300; display: none; }
.mx-modal.is-open { display: block; }
.mx-modal__backdrop { position: absolute; inset: 0; background: rgba(12,13,17,.75); backdrop-filter: blur(4px); animation: tmfade .25s ease; }
.mx-modal__panel { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: min(880px, 94vw); max-height: 90vh;
    overflow: hidden; background: #fff; border-radius: 20px; box-shadow: 0 40px 100px rgba(0,0,0,.5);
    display: grid; grid-template-columns: 1.1fr 1fr; animation: tmrise .3s cubic-bezier(.4,0,.2,1); }
.mx-modal__close { position: absolute; top: 12px; right: 14px; z-index: 3; width: 38px; height: 38px; border: 0; border-radius: 50%;
    background: rgba(255,255,255,.9); color: #1a1c22; font-size: 26px; line-height: 1; cursor: pointer; transition: var(--t); }
.mx-modal__close:hover { background: var(--red); color: #fff; transform: rotate(90deg); }
.mx-modal__media { background: #0f1116; display: flex; align-items: center; justify-content: center; }
.mx-modal__media[hidden] { display: none; }
.mx-modal__cover { width: 100%; height: 100%; max-height: 90vh; object-fit: cover; display: block; }
.mx-modal__content { padding: clamp(24px, 3vw, 38px); overflow-y: auto; }
.mx-modal__title { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: clamp(1.5rem, 2.4vw, 2rem); color: #2b2f36; }
.mx-modal__facts { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.mx-modal__facts[hidden] { display: none; }
.mx-fact { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 10px; padding: 8px 14px; font-size: .9rem; color: var(--ink-soft); }
.mx-fact b { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); font-weight: 600; margin-bottom: 2px; }
.mx-modal__desc { color: var(--ink-soft); line-height: 1.75; font-size: .97rem; }
.mx-modal__desc[hidden] { display: none; }
.mx-modal__gallery[hidden] { display: none; }
.mx-modal__gallery-title { display: block; font-family: var(--head); text-transform: uppercase; letter-spacing: 1px; font-size: .8rem; color: var(--muted); margin: 22px 0 10px; }
.mx-modal__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.mx-thumb { aspect-ratio: 1; border: 0; padding: 0; border-radius: 8px; cursor: pointer; background: var(--bg-alt) center/cover no-repeat; transition: var(--t); }
.mx-thumb:hover { transform: scale(1.05); box-shadow: var(--shadow); }


/* ---------- Page hero ---------- */
.pagehero { position: relative; min-height: 320px; display: flex; align-items: center; background-size: cover; background-position: center; color: #fff; }
.pagehero__overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(20,22,30,.82), rgba(226,35,26,.35)); }
.pagehero__content { position: relative; padding: 90px 22px 60px; }
.pagehero__title { font-size: clamp(2.2rem, 5vw, 3.6rem); text-transform: uppercase; text-wrap: balance; }
.pagehero__sub { margin-top: 10px; font-size: 1.15rem; color: #e6e7ec; }

/* ---------- Breadcrumb ---------- */
.crumbs { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.crumbs__list { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; padding: 12px 0; margin: 0; font-size: .85rem; }
.crumbs__item { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); }
.crumbs__item a { color: var(--muted); transition: var(--t); }
.crumbs__item a:hover { color: var(--red); }
.crumbs__item [aria-current="page"] { color: var(--ink); font-weight: 600; }
.crumbs__sep { color: var(--muted); opacity: .5; }

/* ---------- Prose ---------- */
.prose { max-width: 820px; margin: 0 auto; color: var(--ink-soft); font-size: 1.08rem; }
.prose p { margin-bottom: 16px; }

/* ---------- Cards grid (page children) ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 44px; }
.tile { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: var(--t); }
.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tile__media { aspect-ratio: 3/2; overflow: hidden; }
.tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.tile:hover .tile__media img { transform: scale(1.07); }
.tile__body { padding: 22px; }
.tile__title { font-size: 1.35rem; text-transform: uppercase; margin-bottom: 8px; }
.tile__text { color: var(--muted); font-size: .95rem; margin-bottom: 14px; }
.tile__link { font-family: var(--head); font-weight: 600; text-transform: uppercase; color: var(--red); letter-spacing: .5px; }

/* ---------- Team (editoryal) ---------- */
.team2 { padding: clamp(60px, 8vw, 100px) 0; background:
    radial-gradient(120% 50% at 50% 0%, #fff 0%, #fdfaf7 60%, #fbf6f2 100%); }
.team2__head { text-align: center; max-width: 680px; margin: 0 auto clamp(40px, 5vw, 60px); }
.team2__eyebrow { font-family: var(--body); text-transform: uppercase; letter-spacing: 3px; font-size: .8rem; font-weight: 700; color: var(--red); }
.team2__h { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: clamp(2rem, 4vw, 2.9rem); color: #2b2f36; line-height: 1.08; margin-top: 12px; }
.team2__lead { color: var(--muted); margin-top: 16px; font-size: 1.08rem; line-height: 1.7; }

.team2__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.4vw, 30px); }
.tmember { background: #fff; border: 1px solid #efe9e3; border-radius: 18px; overflow: hidden; text-align: center;
    box-shadow: 0 12px 34px rgba(60,45,30,.06); transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s; }
.tmember:hover { transform: translateY(-8px); box-shadow: 0 26px 60px rgba(60,45,30,.14); }
.tmember__photo { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--bg-alt); }
.tmember__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .6s ease; }
.tmember:hover .tmember__photo img { transform: scale(1.06); }
.tmember__photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,15,10,.5) 0%, transparent 42%);
    opacity: 0; transition: opacity .35s ease; }
.tmember.is-clickable:hover .tmember__photo::after { opacity: 1; }
.tmember__badge { position: absolute; left: 50%; bottom: 16px; transform: translate(-50%, 10px); z-index: 2;
    background: rgba(255,255,255,.95); color: var(--red); font-family: var(--head); font-weight: 700; text-transform: uppercase;
    letter-spacing: .6px; font-size: .72rem; padding: 8px 16px; border-radius: 999px; box-shadow: 0 8px 20px rgba(0,0,0,.25);
    opacity: 0; transition: opacity .35s ease, transform .35s ease; white-space: nowrap; }
.tmember.is-clickable:hover .tmember__badge { opacity: 1; transform: translate(-50%, 0); }
.tmember__info { padding: 22px 18px 28px; }
.tmember__name { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: 1.32rem; color: #2b2f36; }
.tmember__line { display: block; width: 28px; height: 2px; background: var(--red); margin: 12px auto 10px; transition: width .35s; }
.tmember:hover .tmember__line { width: 48px; }
.tmember__role { color: var(--red); font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .8px; }
.tmember.is-clickable { cursor: pointer; }
.tmember__more { display: inline-block; margin-top: 12px; color: var(--red); font-weight: 600; font-size: .74rem; text-transform: uppercase; letter-spacing: .6px; opacity: .75; transition: var(--t); }
.tmember.is-clickable:hover .tmember__more { opacity: 1; }

/* Ekip modalı */
.tmodal { position: fixed; inset: 0; z-index: 200; display: none; }
.tmodal.is-open { display: block; }
.tmodal__backdrop { position: absolute; inset: 0; background: rgba(18,20,27,.72); backdrop-filter: blur(3px); animation: tmfade .25s ease; }
@keyframes tmfade { from { opacity: 0; } to { opacity: 1; } }
.tmodal__panel { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: min(920px, 94vw); max-height: 90vh; overflow: hidden;
    background: #fff; border-radius: 20px; box-shadow: 0 40px 100px rgba(0,0,0,.5); display: grid; grid-template-columns: 42% 1fr; animation: tmrise .3s cubic-bezier(.4,0,.2,1); }
@keyframes tmrise { from { opacity: 0; transform: translate(-50%, -46%); } to { opacity: 1; transform: translate(-50%, -50%); } }
.tmodal__close { position: absolute; top: 14px; right: 16px; z-index: 3; width: 38px; height: 38px; border: 0; border-radius: 50%; background: rgba(255,255,255,.9); color: #1a1c22; font-size: 26px; line-height: 1; cursor: pointer; transition: var(--t); }
.tmodal__close:hover { background: var(--red); color: #fff; transform: rotate(90deg); }
/* Fotoğraf alanı: dolgulu, yuvarlak köşeli — kenarlara dayanmaz, aralarında boşluk */
.tmodal__media { position: relative; background: #fff; padding: 16px; display: flex; flex-direction: column; gap: 14px; overflow: hidden; }
.tmodal__action { flex: 1 1 0; min-height: 0; width: 100%; object-fit: cover; object-position: center 18%; border-radius: 16px; display: block; box-shadow: 0 8px 22px rgba(30,25,20,.12); }
.tmodal__action[hidden] { display: none; }
.tmodal__fig { flex: 1 1 0; min-height: 0; position: relative; margin: 0; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 22px rgba(30,25,20,.12); }
.tmodal__photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform .7s ease; }
.tmodal__fig:hover .tmodal__photo { transform: scale(1.06); }
.tmodal__content { padding: clamp(26px, 3vw, 40px); overflow-y: auto; }
.tmodal__name { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: clamp(1.5rem, 2.5vw, 2rem); color: #2b2f36; }
.tmodal__content .tmodal__line { display: block; width: 40px; height: 2px; background: var(--red); margin: 12px 0; }
.tmodal__role { color: var(--red); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 18px; }
.tmodal__bio p { color: var(--ink-soft); font-size: .97rem; line-height: 1.75; margin-bottom: 14px; }

@media (max-width: 720px) {
    .tmodal__panel { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
    .tmodal__media { height: 300px; }
    .tmodal.has-action .tmodal__media { height: 460px; }
}

/* ---------- Contact (editoryal / EON Tours esinli) ---------- */
.ct2 { padding: clamp(60px, 8vw, 104px) 0 clamp(56px, 8vw, 90px);
    background: radial-gradient(120% 50% at 50% 0%, #fff 0%, #fdfaf7 60%, #fbf6f2 100%); }
.ct2__head { text-align: center; max-width: 680px; margin: 0 auto clamp(38px, 5vw, 58px); }
.ct2__eyebrow { font-family: var(--body); text-transform: uppercase; letter-spacing: 3px; font-size: .8rem; font-weight: 700; color: var(--red); }
.ct2__h { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: clamp(2rem, 4vw, 2.9rem); color: #2b2f36; line-height: 1.08; margin-top: 12px; }
.ct2__lead { color: var(--muted); margin-top: 16px; font-size: 1.08rem; line-height: 1.7; }

.ct2__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 3vw, 30px); align-items: stretch; }
.ct2__form-card, .ct2__info-card { display: flex; flex-direction: column; background: #fff; border: 1px solid #efe9e3;
    border-radius: 18px; padding: clamp(28px, 3.4vw, 42px); box-shadow: 0 16px 46px rgba(60,45,30,.07); }
.ct2__card-title { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: 1.6rem; color: #2b2f36; margin-bottom: 24px; }

.cform { display: flex; flex-direction: column; gap: 18px; }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cfield { display: flex; flex-direction: column; gap: 7px; }
.cfield label { font-weight: 600; font-size: .82rem; color: #5a5f68; }
.cfield input, .cfield textarea, .cfield select {
    font-family: inherit; font-size: 1rem; width: 100%; padding: 13px 15px; color: var(--ink);
    background: #fbfaf8; border: 1.5px solid #eae4dd; border-radius: 12px; transition: var(--t); }
.cfield textarea { resize: vertical; min-height: 130px; }
.cfield select { appearance: none; -webkit-appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7080' stroke-width='2.2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.cfield input:focus, .cfield textarea:focus, .cfield select:focus {
    outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 4px rgba(226,35,26,.1); }

.btn-pill { align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; margin-top: 4px;
    background: var(--red); color: #fff; border: 0; font-family: inherit; font-weight: 600; font-size: 1rem;
    padding: 14px 34px; border-radius: 50px; cursor: pointer; transition: var(--t); box-shadow: 0 10px 26px rgba(226,35,26,.26); }
.btn-pill:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(226,35,26,.34); }
.cf-turnstile { margin: 2px 0; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

.ct2__info-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.ct2__info-list li { display: flex; gap: 14px; align-items: flex-start; }
.ct2__ico { flex: none; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: rgba(226,35,26,.09); color: var(--red); }
.ct2__ico svg { width: 20px; height: 20px; }
.ct2__info-list b { display: block; font-weight: 700; font-size: .95rem; color: #2b2f36; margin-bottom: 3px; }
.ct2__info-list span { color: var(--muted); font-size: .93rem; line-height: 1.6; }
.ct2__info-list a { color: var(--ink-soft); }
.ct2__info-list a:hover { color: var(--red); }
.ct2__info-list { flex: 1; }
.ct2__note { margin-top: 24px; padding: 13px 16px; border-radius: 12px; background: rgba(226,35,26,.07); color: var(--red-dark); font-weight: 600; font-size: .9rem; text-align: center; }

.ct2__map-wrap { margin-top: clamp(54px, 7vw, 92px); }
.ct2__map-head { text-align: center; margin-bottom: 32px; }
.ct2__map { line-height: 0; border-radius: 18px; overflow: hidden; border: 1px solid #efe9e3; box-shadow: 0 16px 46px rgba(60,45,30,.08); }
.ct2__map iframe { display: block; }

.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-weight: 500; }
.alert--success { background: #e7f7ec; color: #1c7a3e; border: 1px solid #b6e6c5; }
.alert--error { background: #fdecec; color: #b81a12; border: 1px solid #f4c3c0; }

/* ---------- Footer ---------- */
.footer { background: linear-gradient(180deg, #16181f 0%, #0f1116 100%); color: #aeb3c0; padding: 0; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--red), #ff6a5f 45%, var(--red) 100%); }
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1.15fr 1fr; gap: 48px; padding: clamp(40px, 5vw, 60px) 0 46px; }

/* Marka sütunu */
.footer__brand { max-width: 340px; }
.footer__logo { display: inline-block; transition: var(--t); }
.footer__logo:hover { transform: translateY(-2px); }
.footer__logo img { height: 58px; width: auto; display: block; }
.footer__tagline { font-size: .93rem; line-height: 1.75; margin-top: 20px; color: #9aa0ae; }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); color: #cfd2dc; transition: var(--t); }
.footer__social a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(226,35,26,.35); }
.footer__social svg { width: 18px; height: 18px; }

/* Başlıklar */
.footer__title { font-family: var(--head); font-size: 1.05rem; text-transform: uppercase; letter-spacing: 1.2px;
    color: #fff; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer__title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--red); }

/* Hızlı linkler */
.footer__links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer__links a { font-size: .93rem; color: #aeb3c0; display: inline-flex; align-items: center; gap: 8px; transition: var(--t); }
.footer__links a::before { content: '›'; color: var(--red); font-size: 1.1rem; line-height: 1; transform: translateX(0); transition: var(--t); }
.footer__links a:hover { color: #fff; }
.footer__links a:hover::before { transform: translateX(3px); }

/* İletişim */
.footer__contact { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; line-height: 1.6; }
.footer__ci { flex: none; width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
    background: rgba(226,35,26,.12); color: var(--red); margin-top: 1px; }
.footer__ci svg { width: 17px; height: 17px; }
.footer__contact a { color: #cfd2dc; transition: var(--t); }
.footer__contact a:hover { color: var(--red); }

/* Güven / TÜRSAB rozeti */
.footer__trust { }
.footer__badge { display: inline-flex; background: #fff; padding: 12px 16px; border-radius: 12px; box-shadow: 0 10px 26px rgba(0,0,0,.28); }
.footer__badge img { height: 46px; width: auto; display: block; }
.footer__badge-note { font-size: .8rem; line-height: 1.6; color: #8f95a3; margin-top: 14px; }

/* Alt bar */
.footer__bar { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; font-size: .85rem; }
.footer__bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px 28px; flex-wrap: wrap; }
.footer__copy { color: #8f95a3; }
.footer__legal { display: flex; gap: 22px; }
.footer__legal a { color: #aeb3c0; font-size: .85rem; transition: var(--t); }
.footer__legal a:hover { color: #fff; }
.footer__partof { display: inline-flex; align-items: center; gap: 10px; color: #8f95a3; transition: var(--t); }
.footer__partof span { font-size: .82rem; letter-spacing: .3px; }
.footer__partof img { height: 20px; width: auto; filter: brightness(0) invert(1); opacity: .8; transition: var(--t); }
.footer__partof:hover { color: #fff; }
.footer__partof:hover img { opacity: 1; }

/* ---------- To top ---------- */
/* WhatsApp yüzen buton */
.wa-float { position: fixed; right: 22px; bottom: 22px; width: 54px; height: 54px; border-radius: 50%;
    background: #25d366; color: #fff; display: grid; place-items: center; z-index: 41;
    box-shadow: 0 8px 24px rgba(37,211,102,.45); transition: var(--t); animation: wa-pulse 2.6s ease-out infinite; }
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 30px rgba(37,211,102,.55); }
.wa-float svg { width: 30px; height: 30px; }
@keyframes wa-pulse { 0% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
    70% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); } }


.muted { color: var(--muted); }
.notfound__code { font-size: clamp(5rem, 18vw, 11rem); color: var(--red); line-height: 1; }
.notfound__text { color: var(--muted); font-size: 1.2rem; margin: 10px 0 26px; }

/* ---------- Rakam / güven şeridi ---------- */
.stats-band { position: relative; background: linear-gradient(180deg, #1a1c22 0%, #131519 100%); color: #fff; padding: clamp(50px, 6vw, 74px) 0; overflow: hidden; }
.stats-band::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 260px; height: 3px; background: linear-gradient(90deg, transparent, var(--red), transparent); }
.stats-band::after { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% -10%, rgba(226,35,26,.14), transparent 60%); pointer-events: none; }
.stats-band__kick { position: relative; text-align: center; font-family: var(--head); text-transform: uppercase; letter-spacing: 3px; font-size: .82rem; font-weight: 600; color: #ff9d97; margin-bottom: clamp(28px, 4vw, 42px); }
.stats-band__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item { position: relative; display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 8px 16px; }
.stat-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 22%; height: 56%; width: 1px; background: rgba(255,255,255,.1); }
.stat-item__n { font-family: var(--head); font-size: clamp(2.6rem, 5.5vw, 3.7rem); font-weight: 700; color: #fff; line-height: 1; }
.stat-item__suffix { font-style: normal; color: var(--red); margin-left: 2px; }
.stat-item__l { font-size: .86rem; color: #b9bdc9; text-transform: uppercase; letter-spacing: .6px; line-height: 1.4; max-width: 22ch; }

/* ---------- SSS (editoryal accordion) ---------- */
.faq2 { padding: clamp(64px, 8vw, 104px) 0;
    background: radial-gradient(120% 60% at 88% 0%, #fff 0%, #fdfaf7 55%, #fbf6f2 100%); }
.faq2__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(36px, 5vw, 72px); align-items: start; }

/* Sol tanıtım (yapışkan) */
.faq2__intro { position: sticky; top: 110px; }
.faq2__eyebrow { font-family: var(--body); text-transform: uppercase; letter-spacing: 3px; font-size: .8rem; font-weight: 700; color: var(--red); }
.faq2__h { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: clamp(2rem, 4vw, 2.8rem); color: #2b2f36; line-height: 1.1; margin: 14px 0 18px; }
.faq2__lead { color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
.faq2__card { margin-top: 30px; background: #fff; border: 1px solid #efe9e3; border-radius: 16px;
    padding: 26px; box-shadow: 0 16px 40px rgba(60,45,30,.08); display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.faq2__card-title { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: 1.2rem; color: #2b2f36; }
.faq2__card-mail { color: var(--red); font-weight: 600; font-size: .95rem; margin-bottom: 6px; }
.faq2__card-mail:hover { text-decoration: underline; }

/* Akordeon */
.faq2__list { display: flex; flex-direction: column; gap: 14px; }
.faq2__item { border: 1px solid #efe9e3; border-radius: 16px; overflow: hidden; background: #fff;
    box-shadow: 0 6px 20px rgba(60,45,30,.05); transition: box-shadow .3s, border-color .3s; }
.faq2__item[open] { border-color: rgba(226,35,26,.4); box-shadow: 0 16px 40px rgba(60,45,30,.1); }
.faq2__q { cursor: pointer; list-style: none; padding: 22px 24px; display: flex; align-items: center; gap: 18px; }
.faq2__q::-webkit-details-marker { display: none; }
.faq2__num { font-family: var(--head); font-size: 1rem; font-weight: 700; color: var(--red); flex: none;
    width: 34px; height: 34px; border-radius: 50%; background: rgba(226,35,26,.1); display: grid; place-items: center; }
.faq2__q-text { flex: 1; font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: #2b2f36; line-height: 1.35; }
.faq2__icon { position: relative; width: 18px; height: 18px; flex: none; }
.faq2__icon::before, .faq2__icon::after { content: ''; position: absolute; background: var(--red); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.faq2__icon::before { left: 0; top: 8px; width: 18px; height: 2px; }
.faq2__icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq2__item[open] .faq2__icon::after { transform: rotate(90deg); opacity: 0; }
.faq2__a { padding: 0 24px 24px 76px; color: var(--ink-soft); line-height: 1.8; font-size: .97rem; }

/* ---------- Haberler / Blog ---------- */
.news2 { padding: clamp(56px, 8vw, 96px) 0; }
.news2__h { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: clamp(2rem, 4vw, 2.9rem); color: #2b2f36; line-height: 1.1; }
.news2__lead { color: var(--muted); margin-top: 16px; font-size: 1.04rem; line-height: 1.7; }

/* Öne çıkan haber (büyük yatay kart) */
.news-feature { display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; background: #fff; border: 1px solid #efe9e3;
    border-radius: 20px; overflow: hidden; box-shadow: 0 18px 46px rgba(60,45,30,.09); margin-bottom: clamp(28px, 4vw, 44px);
    transition: transform .35s, box-shadow .35s; }
.news-feature:hover { transform: translateY(-5px); box-shadow: 0 30px 66px rgba(60,45,30,.15); }
.news-feature__media { position: relative; overflow: hidden; min-height: 280px; background: var(--bg-alt); }
.news-feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.news-feature:hover .news-feature__media img { transform: scale(1.05); }
.news-feature__badge { position: absolute; top: 16px; left: 16px; background: var(--red); color: #fff; font-family: var(--head);
    font-weight: 600; text-transform: uppercase; letter-spacing: .6px; font-size: .74rem; padding: 6px 14px; border-radius: 999px; box-shadow: 0 6px 16px rgba(226,35,26,.35); }
.news-feature__body { padding: clamp(28px, 3.5vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.news-feature__date { color: var(--red); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 12px; }
.news-feature__title { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: #2b2f36; line-height: 1.2; }
.news-feature__excerpt { color: var(--ink-soft); line-height: 1.75; margin: 16px 0 22px; }
.news-feature__link { font-family: var(--head); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--red); font-size: .88rem; }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.news-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: var(--t); display: flex; flex-direction: column; }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.news-card__media { display: block; aspect-ratio: 16/10; overflow: hidden; }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.news-card:hover .news-card__media img { transform: scale(1.06); }
.news-card__body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.news-card__date { color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .5px; }
.news-card__title { font-size: 1.3rem; text-transform: uppercase; line-height: 1.15; }
.news-card__title a { color: var(--ink); }
.news-card__title a:hover { color: var(--red); }
.news-card__excerpt { color: var(--muted); font-size: .95rem; }
.news-card__link { margin-top: auto; color: var(--red); font-family: var(--head); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; font-size: .85rem; }

/* Makale */
.article { max-width: 840px; }
.article__meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; gap: 16px; }
.article__back { color: var(--red); font-weight: 600; }
.article__date { color: var(--muted); font-size: .9rem; }

/* Bülten (footer) */
.footer__news { border-bottom: 1px solid rgba(255,255,255,.1); padding: 18px 0; }
.footer__news-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px 24px; flex-wrap: wrap; position: relative; }
.footer__news-title { font-size: 1.2rem; text-transform: uppercase; color: #fff; line-height: 1.2; }
.footer__news-text p { color: #b9bdc9; font-size: .88rem; margin-top: 2px; }
.footer__news-form { display: flex; gap: 10px; flex: 1; max-width: 480px; min-width: 260px; }
.footer__news-form input[type=email] { flex: 1; padding: 12px 16px; border-radius: 999px; border: 1.5px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: #fff; font-family: inherit; }
.footer__news-form input[type=email]::placeholder { color: #8a8fa0; }
.footer__news-form input[type=email]:focus { outline: none; border-color: var(--red); }
.footer__news-flash { position: absolute; bottom: -22px; left: 0; font-size: .85rem; }
.footer__news-flash.is-ok { color: #7ee0a0; }
.footer__news-flash.is-err { color: #ff9d97; }

/* ---------- Çerez onayı ---------- */
.consent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 300; background: var(--ink); color: #e6e7ec; box-shadow: 0 -8px 30px rgba(0,0,0,.28); }
.consent__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 22px; flex-wrap: wrap; }
.consent__text { font-size: .9rem; margin: 0; max-width: 72ch; line-height: 1.55; }
.consent__text a { color: #ff9d97; text-decoration: underline; }
.consent__actions { display: flex; gap: 10px; flex-shrink: 0; }
.consent__btn { border: 0; border-radius: 999px; padding: 10px 24px; font-family: var(--head); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; cursor: pointer; font-size: .92rem; transition: var(--t); }
.consent__btn--accept { background: var(--red); color: #fff; }
.consent__btn--accept:hover { background: var(--red-dark); transform: translateY(-2px); }
.consent__btn--ghost { background: transparent; color: #cfd2dc; border: 1.5px solid rgba(255,255,255,.28); }
.consent__btn--ghost:hover { border-color: #fff; color: #fff; }

/* Harita — onay verilene kadar placeholder */
.ct2__map { position: relative; }
.map-ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 24px; background: var(--bg-alt); color: var(--muted); z-index: 2; }
.map-ph p { margin: 0; max-width: 30ch; }

/* İletişim gizlilik onay kutusu */
.cform__consent { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--ink-soft); cursor: pointer; line-height: 1.5; }
.cform__consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--red); flex: none; }
.cform__consent a { color: var(--red); font-weight: 600; white-space: nowrap; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .events__grid { grid-template-columns: repeat(2, 1fr); }
    .team2__grid { grid-template-columns: repeat(2, 1fr); }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .mx-regions { grid-template-columns: repeat(3, 1fr); }
    .maps-why__grid { grid-template-columns: repeat(2, 1fr); }
    .tst2-grid { grid-template-columns: repeat(2, 1fr); }
    .gal-grid { grid-template-columns: repeat(3, 1fr); }
    .news-feature { grid-template-columns: 1fr; }
    .news-feature__media { min-height: 240px; aspect-ratio: 16/9; }
    .footer__grid { grid-template-columns: 1.4fr 1fr; gap: 40px 48px; }
    .footer__brand { grid-column: 1 / -1; max-width: none; }
    .footer__brand .footer__tagline { max-width: 480px; }
}
@media (max-width: 860px) {
    .header__toggle { display: flex; }
    .nav {
        position: fixed; inset: 0 0 0 auto; width: min(300px, 80vw); background: #fff;
        flex-direction: column; align-items: stretch; padding: 90px 20px 30px; gap: 4px;
        transform: translateX(100%); transition: var(--t); box-shadow: var(--shadow-lg); z-index: 45;
    }
    .nav.is-open { transform: translateX(0); }
    .nav__link { font-size: 1.2rem; padding: 14px 16px; }
    .about2__grid { grid-template-columns: 1fr; gap: 44px; }
    .about2__badge { width: 108px; height: 108px; right: 14px; bottom: -20px; }
    .about2__badge-n { font-size: 2.1rem; }
    .faq2__grid { grid-template-columns: 1fr; gap: 36px; }
    .faq2__intro { position: static; }
    .ct2__grid { grid-template-columns: 1fr; }
    .cform__row { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px 40px; }
    .footer__news-inner { flex-direction: column; align-items: stretch; text-align: center; }
    .footer__news-form { max-width: none; }
    .footer__news-flash { position: static; margin-top: 8px; text-align: center; }
    .footer__bar-inner { justify-content: center; text-align: center; }
}
@media (max-width: 860px) {
    .topbar__partof { display: none; }              /* üst bar kalabalığını azalt */
}
@media (max-width: 640px) {
    .topbar__mail { display: none; }
    .topbar__social { display: none; }
    .topbar__inner { min-height: 38px; gap: 10px; }
    .topbar { font-size: .78rem; }
    .consent__inner { flex-direction: column; align-items: stretch; text-align: center; }
    .consent__actions { justify-content: center; }
    .stats-band__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 12px; }
    .stat-item::after { display: none; }
    .gal-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .gal-card__open { opacity: 1; transform: none; }
    .news-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .events__grid, .cards-grid, .team2__grid { grid-template-columns: 1fr; }
    .form__row { grid-template-columns: 1fr; }
    .header__inner { min-height: 70px; }
    .pagehero { min-height: 240px; }
    .pagehero__content { padding: 70px 22px 40px; }
    .btn--lg { font-size: 1.05rem; padding: .8em 1.5em; }
    .slant-hero__title { font-size: clamp(1.5rem, 6vw, 2.2rem); }
    .about2__features { grid-template-columns: 1fr; }
    .about2__cta .btn { flex: 1; justify-content: center; }
    .faq2__a { padding-left: 24px; }
    .mx-modal__panel { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
    .mx-modal__media { max-height: 300px; }
    .mx-modal__cover { max-height: 300px; }
    .maps-why__grid { grid-template-columns: 1fr; }
    .maps-cta__inner { flex-direction: column; align-items: flex-start; text-align: left; }
    .maps-cta__inner .btn { width: 100%; justify-content: center; }
    .tst2-grid { grid-template-columns: 1fr; }
    .tst-cta__inner { flex-direction: column; align-items: flex-start; }
    .tst-cta__inner .btn { width: 100%; justify-content: center; }
    .mx-regions { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .mx-region { padding: 12px; }
    .mx-region__name { font-size: .95rem; }
    .mx-map { height: clamp(340px, 60vh, 460px); }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__legal { flex-wrap: wrap; gap: 8px 18px; justify-content: center; }
    .footer__bar-inner { flex-direction: column; align-items: center; text-align: center; }
    .article__meta { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* Mobil sağlamlaştırma — dokunma hedefleri + dar ekranlar */
@media (max-width: 860px) {
    .langswitch__item { padding: 7px 12px; }        /* parmakla daha rahat */
    .gal-chip { padding: 10px 18px; }
    .footer__news-form { min-width: 0; }             /* dar ekranda taşmayı önle */
    .footer__legal a { padding: 3px 0; }
}
@media (max-width: 400px) {
    .container { padding-inline: 16px; }
    .btn { font-size: 1rem; }
    .btn--lg { font-size: .98rem; }
    .stat-item__n { font-size: 2.2rem; }
    .crumbs__list { font-size: .8rem; }
    .wa-float { width: 50px; height: 50px; right: 16px; bottom: 16px; }
    .section-head__title, .about2__h, .tst2__h, .maps-why__h, .gal__h, .news2__h {
        font-size: clamp(1.6rem, 8vw, 2rem); }
}

/* ---------- Hareket azaltma tercihi ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
    .slant-panel:hover { flex: 1 !important; }
}
