/* Geomini — self-host (CDN yok). Tek variable dosya, 400–700 ağırlık ekseni. */
@font-face {
    font-family: "Geomini";
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url("../fonts/geomini-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: "Geomini";
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url("../fonts/geomini-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
    --navy-950: #101b2b;
    --navy-900: #16253a;
    --navy-800: #21344d;
    --copper: #a86f3d;
    --copper-dark: #87542b;
    --copper-soft: #f2e8df;
    --ink: #172334;
    --muted: #617083;
    --paper: #ffffff;
    --canvas: #f5f7f9;
    --line: #dce2e8;
    --line-dark: rgba(255, 255, 255, .14);
    --shadow: 0 18px 48px rgba(16, 27, 43, .08);
    /* Tüm site Geomini (sıcak, geometrik). Serif değişkeni de Geomini'ye düşer;
       böylece eski başlık kuralları ayrı düzenlemeye gerek kalmadan tek fonta gelir. */
    --sans: "Geomini", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --serif: "Geomini", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
body::selection { background: var(--copper-soft); color: var(--navy-950); }
a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 96px 0; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy-950); font-family: var(--serif); font-weight: 700; line-height: 1.18; letter-spacing: -.01em; }
h1 { margin-bottom: 24px; font-size: clamp(2.75rem, 5vw, 4.75rem); }
h2 { margin: 14px 0 22px; font-size: clamp(2rem, 3.5vw, 3.25rem); }
h3 { font-size: 1.45rem; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--copper-dark); font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { width: 28px; height: 2px; background: currentColor; content: ""; }
.eyebrow-light { color: #e2b68f; }

/* Header */
.site-header { position: relative; z-index: 50; border-bottom: 1px solid var(--line); background: #f3f3f3; color: var(--navy-950); }
.header-topline { background: var(--navy-950); color: rgba(255, 255, 255, .72); font-size: .78rem; }
.header-topline-inner { display: flex; justify-content: space-between; align-items: center; min-height: 38px; }
.header-topline-inner div { display: flex; align-items: center; gap: 22px; }
.header-topline a { color: #fff; text-decoration: none; }
.header-topline-lead { font-weight: 700; letter-spacing: .01em; color: rgba(255, 255, 255, .9); }
.header-inner { display: flex; align-items: center; min-height: 88px; gap: 38px; }
.site-logo { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 12px; color: inherit; text-decoration: none; }
.site-logo img { max-width: 220px; max-height: 52px; }
.logo-mark { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid var(--navy-950); color: var(--navy-950); font-family: var(--serif); font-size: .82rem; font-weight: 700; }
.logo-copy { display: flex; flex-direction: column; line-height: 1.25; }
.logo-copy strong { font-family: var(--serif); font-size: 1.1rem; }
.logo-copy small { margin-top: 3px; color: var(--muted); font-size: .67rem; letter-spacing: .04em; }
.site-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav-item { position: relative; }
.nav-item > a, .site-nav > a { position: relative; display: block; padding: 30px 0; color: var(--navy-900); font-size: .84rem; font-weight: 700; text-decoration: none; }
.nav-item > a::after, .site-nav > a::after { position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; background: var(--copper); content: ""; transform: scaleX(0); transition: transform .2s ease; }
.nav-item:hover > a::after, .site-nav > a:hover::after { transform: scaleX(1); }
.submenu { position: absolute; top: calc(100% - 8px); left: -22px; display: grid; min-width: 265px; padding: 12px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(8px); transition: .2s ease; }
.nav-item:hover .submenu, .nav-item:focus-within .submenu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.submenu a { padding: 10px 12px; border-bottom: 1px solid var(--line); color: var(--ink); font-size: .8rem; text-decoration: none; }
.submenu a:last-child { border: 0; }
.submenu a:hover { background: var(--canvas); color: var(--copper-dark); }
.header-call { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; padding: 9px 20px 9px 12px; border-radius: 999px; background: var(--navy-950); color: #fff; line-height: 1.2; text-decoration: none; transition: background .2s ease, transform .2s ease; }
.header-call:hover { background: var(--copper-dark); transform: translateY(-1px); }
.header-call-icon { display: grid; width: 34px; height: 34px; flex: 0 0 34px; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, .14); }
.header-call-icon svg { width: 17px; height: 17px; color: #fff; }
.header-call-copy { display: flex; flex-direction: column; }
.header-call-copy small { color: rgba(255, 255, 255, .68); font-size: .6rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.header-call-copy strong { font-size: .88rem; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); background: #fff; }
.nav-toggle span { display: block; height: 2px; margin: 4px 0; background: var(--navy-950); }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 88px 0 78px; background: var(--canvas); }
.hero::before { position: absolute; top: 0; right: 0; width: 38%; height: 100%; background: var(--navy-950); content: ""; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr); align-items: center; gap: 78px; }
.hero-copy { padding: 14px 0; }
.hero-copy h1 { max-width: 780px; margin: 20px 0 24px; }
.hero-copy > p { max-width: 700px; color: var(--muted); font-size: 1.12rem; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 13px 24px; border: 1px solid transparent; border-radius: 999px; font-size: .82rem; font-weight: 700; letter-spacing: .01em; text-decoration: none; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary, .button-dark { background: var(--navy-950); color: #fff; }
.button-primary:hover, .button-dark:hover { background: var(--copper-dark); }
.button-ghost, .button-outline { border-color: var(--line); background: #fff; color: var(--navy-950); }
.button-ghost:hover, .button-outline:hover { border-color: var(--navy-950); }
.button-light { background: #fff; color: var(--navy-950); }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 710px; margin-top: 52px; border-top: 1px solid var(--line); }
.trust-row span { display: flex; flex-direction: column; padding: 20px 20px 0 0; color: var(--muted); font-size: .76rem; line-height: 1.45; }
.trust-row strong { margin-bottom: 5px; color: var(--copper-dark); font-size: .68rem; letter-spacing: .12em; }
.hero-guide { position: relative; padding: 40px; background: #fff; box-shadow: 0 24px 70px rgba(3, 12, 25, .18); }
.hero-guide-kicker { color: var(--copper-dark); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero-guide h2 { margin: 10px 0 24px; font-size: 1.75rem; }
.hero-guide nav { border-top: 1px solid var(--line); }
.hero-guide nav a { display: grid; grid-template-columns: 32px 1fr auto; align-items: center; gap: 12px; padding: 15px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.hero-guide nav a span { color: var(--copper-dark); font-size: .66rem; }
.hero-guide nav a strong { color: var(--navy-950); font-size: .84rem; }
.hero-guide nav a i { color: var(--copper); font-style: normal; }
.hero-guide nav a:hover strong { color: var(--copper-dark); }
.hero-guide-all { display: flex; justify-content: space-between; margin-top: 21px; color: var(--navy-950); font-size: .76rem; font-weight: 800; text-decoration: none; }

/* Hero görsel slider */
.hero-slider { position: relative; overflow: hidden; min-height: min(76vh, 680px); background: var(--navy-950); }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9, 15, 25, .82) 0%, rgba(9, 15, 25, .62) 45%, rgba(9, 15, 25, .28) 100%); content: ""; }
.hero-slide-caption { position: absolute; right: 20px; bottom: 20px; z-index: 3; padding: 7px 14px; border-radius: 999px; background: rgba(9, 15, 25, .55); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .02em; backdrop-filter: blur(4px); }
.hero-slider-overlay { position: relative; z-index: 2; display: flex; align-items: center; min-height: min(76vh, 680px); padding: 80px 0; }
.hero-slider-overlay .eyebrow-light { color: #e2b68f; }
.hero-slider-overlay h1 { max-width: 820px; margin: 20px 0 22px; color: #fff; }
.hero-slider-overlay p { max-width: 620px; margin: 0; color: rgba(255, 255, 255, .82); font-size: 1.12rem; line-height: 1.75; }
.hero-slider-overlay .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-slider-nav { position: absolute; top: 50%; z-index: 4; display: grid; width: 50px; height: 50px; place-items: center; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .16); color: #fff; font-size: 1.9rem; line-height: 1; cursor: pointer; transform: translateY(-50%); transition: background .2s ease; }
.hero-slider-nav:hover { background: var(--copper); }
.hero-slider-prev { left: 22px; }
.hero-slider-next { right: 22px; }
.hero-slider-dots { position: absolute; bottom: 24px; left: 50%; z-index: 4; display: flex; gap: 10px; transform: translateX(-50%); }
.hero-slider-dot { width: 11px; height: 11px; padding: 0; border: 2px solid rgba(255, 255, 255, .7); border-radius: 50%; background: transparent; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.hero-slider-dot.is-active { background: #fff; transform: scale(1.15); }

/* Common sections */
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading p { max-width: 660px; color: var(--muted); }
.section-heading--row { display: flex; justify-content: space-between; align-items: end; max-width: none; gap: 60px; }
.section-heading--row > div { max-width: 760px; }
.text-link, .card-link { display: inline-flex; align-items: center; gap: 10px; color: var(--copper-dark); font-size: .75rem; font-weight: 800; text-decoration: none; }
.text-link:hover, .card-link:hover { color: var(--navy-950); }
.services { background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.service-grid--four { grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; display: flex; min-height: 310px; flex-direction: column; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; text-decoration: none; transition: background .2s ease, box-shadow .2s ease, transform .2s ease; }
.service-card:hover { z-index: 2; background: var(--navy-950); box-shadow: var(--shadow); transform: translateY(-4px); }
.service-number { margin-bottom: 52px; color: var(--copper-dark); font-size: .68rem; font-weight: 800; letter-spacing: .14em; }
.service-card h3 { margin-bottom: 16px; font-size: 1.5rem; }
.service-card p { color: var(--muted); font-size: .9rem; }
.card-arrow { margin-top: auto; color: var(--copper); }
.service-card:hover h3, .service-card:hover .card-arrow { color: #fff; }
.service-card:hover p { color: rgba(255, 255, 255, .7); }

.about { border-top: 1px solid var(--line); background: var(--canvas); }
.about-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 110px; }
.about-intro { padding-right: 42px; border-right: 1px solid var(--line); }
.about-intro h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
.about-lead { margin-bottom: 34px; color: var(--ink); font-family: var(--serif); font-size: clamp(1.35rem, 2.2vw, 1.85rem); line-height: 1.55; }
.feature-list { display: grid; margin: 0 0 34px; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 48px 1fr; align-items: center; padding: 17px 0; border-top: 1px solid var(--line); }
.feature-list li:last-child { border-bottom: 1px solid var(--line); }
.feature-list li span { color: var(--copper-dark); font-size: .68rem; letter-spacing: .1em; }
.feature-list li strong { color: var(--navy-950); font-size: .9rem; }

.home-blog { background: #fff; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-grid--page { grid-template-columns: repeat(2, 1fr); }
.blog-card { display: flex; min-width: 0; flex-direction: column; border: 1px solid var(--line); background: #fff; transition: box-shadow .2s ease, transform .2s ease; }
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.blog-card-media { display: block; overflow: hidden; aspect-ratio: 16 / 9; background: var(--navy-950); text-decoration: none; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.blog-card:hover img { transform: scale(1.025); }
.blog-placeholder { display: grid; width: 100%; height: 100%; place-items: center; color: rgba(255, 255, 255, .18); font-family: var(--serif); font-size: 3rem; }
.blog-card-body { display: flex; flex: 1; flex-direction: column; padding: 27px; }
.blog-card time, .article-meta { color: var(--copper-dark); font-size: .7rem; font-weight: 700; letter-spacing: .04em; }
.blog-card h2, .blog-card h3 { margin: 12px 0 14px; font-size: 1.4rem; line-height: 1.3; }
.blog-card h2 a, .blog-card h3 a { text-decoration: none; }
.blog-card p { color: var(--muted); font-size: .88rem; }
.blog-card .card-link { margin-top: auto; padding-top: 8px; }

/* Anasayfa galeri şeridi */
.home-gallery { background: var(--canvas); border-top: 1px solid var(--line); }
.gallery-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.gallery-strip-card { position: relative; display: block; overflow: hidden; aspect-ratio: 3 / 4; background: var(--navy-950); text-decoration: none; }
.gallery-strip-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-strip-card:hover img { transform: scale(1.05); }
.gallery-strip-body { position: absolute; right: 0; bottom: 0; left: 0; display: grid; gap: 3px; padding: 34px 18px 16px; background: linear-gradient(to top, rgba(16, 27, 43, .88), rgba(16, 27, 43, 0)); color: #fff; }
.gallery-strip-body strong { font-family: var(--serif); font-size: 1.02rem; line-height: 1.25; }
.gallery-strip-body span { color: #e2b68f; font-size: .68rem; font-weight: 800; letter-spacing: .05em; }

/* Galeri: albüm kartları */
.album-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.album-card { display: flex; min-width: 0; flex-direction: column; border: 1px solid var(--line); background: #fff; transition: box-shadow .2s ease, transform .2s ease; }
.album-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.album-card-media { display: block; overflow: hidden; aspect-ratio: 4 / 3; background: var(--navy-950); text-decoration: none; }
.album-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.album-card:hover .album-card-media img { transform: scale(1.04); }
.album-card-body { display: flex; flex: 1; flex-direction: column; padding: 26px; }
.album-card-body h2 { margin: 0 0 12px; font-size: 1.4rem; line-height: 1.3; }
.album-card-body h2 a { text-decoration: none; }
.album-card-body p { color: var(--muted); font-size: .88rem; }
.album-card-body .card-link { margin-top: auto; padding-top: 10px; }

/* Galeri: albüm içi foto ızgarası (içerik gövdesinde) */
.prose--gallery { max-width: none; }
.gallery-figures { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0 0 8px; padding: 0; list-style: none; }
.gallery-figures figure { position: relative; margin: 0; overflow: hidden; aspect-ratio: 1 / 1; background: var(--canvas); border: 1px solid var(--line); }
.gallery-figures a { display: block; width: 100%; height: 100%; cursor: zoom-in; }
.gallery-figures img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-figures a:hover img { transform: scale(1.06); }

.album-more { margin-top: 58px; padding-top: 44px; border-top: 1px solid var(--line); }
.album-more h2 { font-size: 1.6rem; }
.album-more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 22px; }
.album-more-card { display: block; text-decoration: none; }
.album-more-card img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; border: 1px solid var(--line); }
.album-more-card strong { display: block; margin-top: 10px; color: var(--navy-950); font-family: var(--serif); font-size: .98rem; }
.album-more-card:hover strong { color: var(--copper-dark); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(9, 15, 25, .93); }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(1100px, 94vw); max-height: 86vh; object-fit: contain; box-shadow: 0 30px 80px rgba(0, 0, 0, .5); }
.lightbox-close, .lightbox-nav { position: absolute; display: grid; width: 52px; height: 52px; place-items: center; border: 0; background: rgba(255, 255, 255, .12); color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; transition: background .2s ease; }
.lightbox-close:hover, .lightbox-nav:hover { background: var(--copper); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: rgba(255, 255, 255, .8); font-size: .8rem; letter-spacing: .05em; }

.contact { padding-top: 30px; background: #fff; }
.contact-box { display: flex; flex-direction: column; gap: 30px; padding: 56px 64px; background: var(--navy-950); color: #fff; }
.contact-box h2 { margin-bottom: 15px; color: #fff; }
.contact-box p { max-width: 720px; margin-bottom: 0; color: rgba(255, 255, 255, .7); }
.contact-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.contact-box .button-outline { border-color: rgba(255, 255, 255, .4); background: transparent; color: #fff; }
.contact-box .button-outline:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }
.button-whatsapp { background: #1faf5d; color: #fff; }
.button-whatsapp:hover { background: #178f4c; }
.button-whatsapp svg { width: 19px; height: 19px; }
.contact-address { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, .14); font-size: .82rem; }

/* Inner pages */
.page-hero { position: relative; overflow: hidden; padding: 66px 0 72px; border-bottom: 1px solid var(--line); background: var(--canvas); }
.page-hero::after { position: absolute; top: 0; right: 0; width: 22%; height: 100%; background: var(--navy-950); content: ""; }
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; color: var(--muted); font-size: .72rem; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--copper-dark); }
.page-hero h1 { max-width: 850px; margin: 14px 0 20px; font-size: clamp(2.5rem, 4.4vw, 4.15rem); }
.page-hero p { max-width: 760px; margin: 0; color: var(--muted); font-size: 1.05rem; }
.page-section { padding: 78px 0 96px; }
.page-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; align-items: start; gap: 72px; }
.page-content { min-width: 0; }
.page-sidebar { position: sticky; top: 24px; display: grid; gap: 22px; }
.sidebar-card, .sidebar-cta { padding: 28px; border: 1px solid var(--line); background: #fff; }
.sidebar-card h2, .sidebar-cta h2 { font-size: 1.4rem; }
.sidebar-card nav { display: grid; margin-top: 20px; border-top: 1px solid var(--line); }
.sidebar-card nav a { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: .78rem; font-weight: 700; text-decoration: none; }
.sidebar-card nav a:hover { color: var(--copper-dark); }
.sidebar-cta { border: 0; background: var(--navy-950); color: rgba(255, 255, 255, .74); }
.sidebar-cta h2 { color: #fff; }
.sidebar-contact-actions { display: grid; gap: 10px; margin-top: 22px; }
.sidebar-contact-actions .button { width: 100%; }
.sidebar-contact-actions .button-outline { border-color: rgba(255, 255, 255, .35); background: transparent; color: #fff; }
.sidebar-map-link { color: #e2b68f; }
.content-cover { width: 100%; margin-bottom: 36px; border: 1px solid var(--line); object-fit: cover; }
.detail-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin: 0 0 40px; padding: 1px; background: var(--line); list-style: none; }
.detail-features li { display: flex; gap: 10px; padding: 18px; background: var(--canvas); color: var(--ink); font-size: .85rem; font-weight: 700; }
.detail-features li span { color: var(--copper-dark); }
.prose { max-width: 780px; color: #354356; font-size: 1.02rem; }
.prose > :first-child { margin-top: 0; }
.prose h2 { margin: 46px 0 18px; padding-top: 4px; font-size: 2rem; }
.prose h3 { margin: 34px 0 14px; font-size: 1.45rem; }
.prose p { margin-bottom: 20px; }
.prose a { color: var(--copper-dark); font-weight: 700; text-underline-offset: 3px; }
.prose ul, .prose ol { margin: 0 0 24px; padding-left: 22px; }
.prose li { margin-bottom: 9px; }
.prose blockquote { margin: 34px 0; padding: 24px 28px; border-left: 3px solid var(--copper); background: var(--canvas); color: var(--navy-950); font-family: var(--serif); font-size: 1.2rem; }
.prose--compact { max-width: 900px; }

/* Uygulama indirme bloğu (GBB Mezarlık vb. sayfa içeriğinde) */
.app-download { margin: 0 0 40px; padding: 34px 36px; border-radius: 16px; background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); color: #fff; }
.app-download .app-download-badge { display: inline-block; margin-bottom: 12px; padding: 6px 14px; border-radius: 999px; background: rgba(226, 182, 143, .16); color: #e2b68f; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.app-download h2 { margin: 0 0 12px; color: #fff; font-size: 1.75rem; }
.app-download p { margin: 0; color: rgba(255, 255, 255, .82); font-size: 1rem; }
.app-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.app-badge { display: inline-flex; align-items: center; gap: 13px; padding: 11px 22px 11px 18px; border-radius: 12px; background: #fff; color: var(--navy-950); font-weight: 700; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.app-badge:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0, 0, 0, .28); }
.app-badge svg { width: 27px; height: 27px; color: var(--navy-950); }
.app-badge span { display: flex; flex-direction: column; line-height: 1.15; }
.app-badge small { color: var(--muted); font-size: .62rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.app-badge strong { font-size: 1.02rem; }
.inline-cta, .article-end { margin-top: 58px; padding: 38px; background: var(--navy-950); color: rgba(255, 255, 255, .72); }
.inline-cta { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 34px; }
.inline-cta h2, .article-end h2 { color: #fff; font-size: 1.7rem; }
.inline-cta p, .article-end p { margin-bottom: 0; }
.article-end .hero-actions { margin-top: 24px; }
.article-end .button-outline { border-color: rgba(255, 255, 255, .35); background: transparent; color: #fff; }
.article-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.service-list-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-list-card { display: grid; grid-template-columns: 38px 1fr; gap: 18px; min-height: 250px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.service-list-card > span, .card-kicker { color: var(--copper-dark); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-list-card h2 { margin: 0 0 14px; font-size: 1.65rem; }
.service-list-card h2 a { text-decoration: none; }
.service-list-card p { color: var(--muted); font-size: .9rem; }
.seo-intro { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--line); }
.generic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.generic-card { padding: 30px; border: 1px solid var(--line); background: #fff; }
.generic-card h2 { margin: 12px 0 15px; font-size: 1.55rem; }
.generic-card h2 a { text-decoration: none; }
.generic-card p { color: var(--muted); }
.faq-list details { border-top: 1px solid var(--line); background: #fff; }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 23px 4px; cursor: pointer; color: var(--navy-950); font-family: var(--serif); font-size: 1.25rem; font-weight: 600; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--copper-dark); font-family: var(--sans); }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details div { padding: 0 44px 24px 4px; color: var(--muted); }
.pagination-wrap { margin-top: 40px; }

/* Forms */
.contact-details { margin-top: 54px; padding-top: 48px; border-top: 1px solid var(--line); }
.contact-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.contact-detail-card { display: flex; min-height: 170px; flex-direction: column; padding: 24px; border: 1px solid var(--line); background: var(--canvas); text-decoration: none; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.contact-detail-card:hover { border-color: var(--copper); box-shadow: var(--shadow); transform: translateY(-3px); }
.contact-detail-card span, .contact-address-panel span { color: var(--copper-dark); font-size: .68rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.contact-detail-card strong { margin: 15px 0 6px; color: var(--navy-950); font-family: var(--serif); font-size: 1.18rem; line-height: 1.3; }
.contact-detail-card small { margin-top: auto; color: var(--muted); }
.contact-address-panel { display: grid; gap: 8px; margin: 18px 0 0; padding: 24px; border-left: 3px solid var(--copper); background: var(--navy-950); color: #fff; font-style: normal; }
.contact-address-panel strong { font-size: .9rem; }
.contact-address-panel a { color: #e2b68f; font-size: .75rem; font-weight: 800; text-decoration: none; }
.contact-map { overflow: hidden; margin-top: 18px; border: 1px solid var(--line); background: var(--canvas); }
.contact-map iframe { display: block; width: 100%; min-height: 450px; border: 0; }
.contact-form-wrap { margin-top: 58px; padding-top: 48px; border-top: 1px solid var(--line); }
.site-form { position: relative; }
.form-grid { display: flex; flex-wrap: wrap; margin: -8px; }
.form-item { min-width: 0; padding: 8px; }
.form-item label, .form-item > span { display: block; margin-bottom: 7px; color: var(--navy-950); font-size: .78rem; font-weight: 800; }
.form-item input:not([type=checkbox]):not([type=radio]), .form-item textarea, .form-item select { width: 100%; min-height: 52px; padding: 12px 15px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--ink); font: inherit; }
.form-item input:focus, .form-item textarea:focus, .form-item select:focus { border-color: var(--copper); outline: 2px solid var(--copper-soft); }
.form-item textarea { min-height: 150px; resize: vertical; }
.form-choice { font-weight: 400 !important; }
.form-submit { min-height: 50px; margin-top: 18px; padding: 13px 28px; border: 0; border-radius: 999px; background: var(--navy-950); color: #fff; font-weight: 700; cursor: pointer; }
.form-error { color: #a32727; font-size: .78rem; }
.form-success { padding: 15px 18px; background: #e0efe5; color: #27482e; }

/* Footer (header ile aynı açık zemin) */
.site-footer { padding: 72px 0 0; background: #f3f3f3; color: var(--muted); border-top: 1px solid var(--line); }
.footer-grid { display: grid; gap: 48px; padding: 8px 0 58px; }
.footer-grid--wide { grid-template-columns: 1.35fr .75fr .75fr .9fr; }
.footer-logo { color: var(--navy-950); }
.footer-logo .logo-mark { border-color: var(--navy-950); color: var(--navy-950); }
.footer-logo .logo-copy small { color: var(--muted); }
.footer-brand p { max-width: 310px; margin: 22px 0 0; font-size: .82rem; color: var(--muted); }
.footer-links, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-links strong, .footer-contact strong { margin-bottom: 10px; color: var(--navy-950); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links a, .footer-contact a { color: var(--ink); font-size: .8rem; text-decoration: none; }
.footer-links a:hover, .footer-contact a:hover { color: var(--copper-dark); }
.footer-contact span { font-size: .8rem; color: var(--muted); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 22px 0; border-top: 1px solid var(--line); font-size: .7rem; }
.footer-signature a { color: var(--navy-950); text-decoration: none; }
.footer-signature a:hover { color: var(--copper-dark); }
.footer-signature strong { font-weight: 700; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; display: flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; }
.whatsapp-float-label { visibility: hidden; max-width: 0; padding: 9px 0; overflow: hidden; border-radius: 4px; background: var(--navy-950); box-shadow: var(--shadow); opacity: 0; white-space: nowrap; font-size: .7rem; font-weight: 800; transform: translateX(8px); transition: max-width .2s ease, padding .2s ease, opacity .2s ease, transform .2s ease, visibility .2s ease; }
.whatsapp-float-icon { display: grid; width: 54px; height: 54px; flex: 0 0 54px; place-items: center; border: 3px solid #fff; border-radius: 50%; background: #1faf5d; box-shadow: 0 12px 30px rgba(16, 27, 43, .25); }
.whatsapp-float-icon svg { width: 29px; height: 29px; }
.whatsapp-float:hover .whatsapp-float-label, .whatsapp-float:focus-visible .whatsapp-float-label { visibility: visible; max-width: 180px; padding-inline: 13px; opacity: 1; transform: translateX(0); }
.whatsapp-float:hover .whatsapp-float-icon { background: #178f4c; }

.mobile-bar { display: none; }

@media (max-width: 1100px) {
    .site-nav { gap: 18px; }
    .nav-item > a, .site-nav > a { font-size: .78rem; }
    .header-call { display: none; }
    .hero-grid { gap: 42px; }
    .service-grid--four { grid-template-columns: repeat(2, 1fr); }
    .gallery-strip { grid-template-columns: repeat(3, 1fr); }
    .footer-grid--wide { grid-template-columns: 1.2fr repeat(3, .8fr); gap: 30px; }
}

@media (max-width: 900px) {
    .container { width: min(100% - 36px, 1200px); }
    .section { padding: 76px 0; }
    .header-topline { display: none; }
    .header-inner { min-height: 74px; }
    .nav-toggle { display: block; margin-left: auto; }
    .site-nav { position: absolute; top: 74px; right: 18px; left: 18px; display: none; max-height: calc(100vh - 95px); overflow-y: auto; padding: 14px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
    .site-nav.is-open { display: grid; }
    .nav-item > a, .site-nav > a { padding: 12px; border-bottom: 1px solid var(--line); }
    .nav-item > a::after, .site-nav > a::after { display: none; }
    .submenu { position: static; display: grid; min-width: 0; padding: 0 0 5px 16px; border: 0; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; }
    .hero { padding: 68px 0; }
    .hero::before { display: none; }
    .hero-slider, .hero-slider-overlay { min-height: 60vh; }
    .hero-slider-overlay { padding: 60px 0; }
    .hero-slide::after { background: linear-gradient(90deg, rgba(9, 15, 25, .84) 0%, rgba(9, 15, 25, .6) 70%, rgba(9, 15, 25, .42) 100%); }
    .hero-grid, .about-grid, .page-layout { grid-template-columns: 1fr; }
    .hero-guide { max-width: 620px; box-shadow: var(--shadow); }
    .about-grid { gap: 48px; }
    .about-intro { padding: 0 0 35px; border-right: 0; border-bottom: 1px solid var(--line); }
    .page-sidebar { position: static; grid-template-columns: 1fr 1fr; }
    .contact-detail-grid { grid-template-columns: repeat(2, 1fr); }
    .section-heading--row { display: block; }
    .section-heading--row .text-link { margin-top: 12px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .generic-grid { grid-template-columns: repeat(2, 1fr); }
    .album-grid { grid-template-columns: repeat(2, 1fr); }
    .album-more-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-box { grid-template-columns: 1fr; padding: 46px; }
    .contact-actions { justify-content: flex-start; }
    .page-hero::after { display: none; }
    .footer-grid--wide { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
    .container { width: min(100% - 28px, 1200px); }
    .section { padding: 62px 0; }
    h1 { font-size: 2.65rem; }
    h2 { font-size: 2.1rem; }
    .logo-mark { width: 42px; height: 42px; }
    .logo-copy small { display: none; }
    .hero { padding: 54px 0; }
    .hero-copy > p { font-size: 1rem; }
    .hero-actions .button { width: 100%; }
    .hero-slider, .hero-slider-overlay { min-height: 0; }
    .hero-slider-overlay { padding: 48px 0 62px; }
    .hero-slider-overlay p { font-size: 1rem; }
    /* Slider butonları mobilde de yan yana (alt alta değil). */
    .hero-slider-overlay .hero-actions { flex-wrap: nowrap; gap: 10px; }
    .hero-slider-overlay .hero-actions .button { flex: 1 1 0; min-width: 0; width: auto; padding-inline: 14px; }
    .hero-slider-nav { display: none; }
    .hero-slide-caption { display: none; }
    .hero-slider-dots { bottom: 16px; }
    .trust-row { grid-template-columns: 1fr; }
    .trust-row span { flex-direction: row; gap: 12px; padding-top: 13px; }
    .hero-guide { padding: 28px 23px; }
    .service-grid--four, .service-list-grid, .blog-grid, .blog-grid--page, .generic-grid, .page-sidebar, .detail-features, .album-grid { grid-template-columns: 1fr; }
    .gallery-strip { grid-template-columns: repeat(2, 1fr); }
    .gallery-figures, .album-more-grid { grid-template-columns: repeat(2, 1fr); }
    .lightbox-nav { width: 44px; height: 44px; }
    .service-card { min-height: 245px; }
    .service-number { margin-bottom: 32px; }
    .page-hero { padding: 48px 0 52px; }
    .page-hero h1 { font-size: 2.5rem; }
    .page-section { padding: 58px 0 72px; }
    .page-layout { gap: 50px; }
    .inline-cta { grid-template-columns: 1fr; padding: 29px; }
    .contact-box { padding: 34px 26px; }
    .form-item { flex-basis: 100% !important; }
    .contact-detail-grid { grid-template-columns: 1fr; }
    .contact-map iframe { min-height: 340px; }
    .footer-grid--wide { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; }
    body { padding-bottom: calc(60px + env(safe-area-inset-bottom)); }
    .mobile-bar { position: fixed; right: 0; bottom: 0; left: 0; z-index: 90; display: grid; grid-template-columns: 1fr 1fr; min-height: 60px; padding-bottom: env(safe-area-inset-bottom); box-shadow: 0 -8px 26px rgba(16, 27, 43, .18); }
    .mobile-bar-btn { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 17px 10px; color: #fff; font-size: .95rem; font-weight: 700; text-decoration: none; }
    .mobile-bar-btn svg { width: 21px; height: 21px; }
    .mobile-bar-wa { background: #1faf5d; }
    .mobile-bar-call { background: var(--navy-950); }
    .mobile-bar-wa:active { background: #178f4c; }
    /* WhatsApp barda olduğundan yüzen buton mobilde gizlenir. */
    .whatsapp-float { display: none; }
}
