/* =========================================================================
   Kapadokya temasi - cappadociacavehotels.com
   Sicak tas / seyahat dergisi. Tuf kayasi ve gun batimi tonlari.
   ========================================================================= */

/* ---------- Fontlar (kendi sunucumuzda, dis baglanti yok) ---------- */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/fraunces-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;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/fraunces-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: 'InterVar';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/inter-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;
}
@font-face {
  font-family: 'InterVar';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/inter-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;
}

/* ---------- Tasarim degiskenleri ---------- */
:root {
  --bg:          #FAF7F2;   /* krem - tuf tasi */
  --bg-sand:     #F2EADF;   /* kum - donusumlu bolumler */
  --surface:     #FFFFFF;
  --text:        #2B2522;   /* sicak siyaha yakin */
  --text-soft:   #6E635B;
  --text-faint:  #9A8F85;
  --line:        #E6DACA;
  --line-soft:   #F0E7DB;
  --accent:      #B4553C;   /* terrakota */
  --accent-dark: #8C3F2B;
  --accent-tint: #F7EAE4;

  --ff-display: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --ff-body:    'InterVar', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
                'Helvetica Neue', Arial, sans-serif;

  --wrap:  1180px;
  --prose: 44rem;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  --sh-sm: 0 1px 2px rgba(43, 37, 34, .06);
  --sh-md: 0 6px 20px -8px rgba(43, 37, 34, .18);
  --sh-lg: 0 18px 50px -20px rgba(43, 37, 34, .30);

  --step: clamp(.9rem, .85rem + .25vw, 1rem);
}

/* ---------- Temel ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: clamp(1rem, .97rem + .16vw, 1.075rem);
  line-height: 1.7;
  font-feature-settings: 'kern' 1, 'liga' 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.012em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 1.55rem + 2.5vw, 3.6rem); font-variation-settings: 'opsz' 120; }
h2 { font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.4rem);  font-variation-settings: 'opsz' 60; }
h3 { font-size: clamp(1.25rem, 1.1rem + .7vw, 1.6rem);  font-variation-settings: 'opsz' 30; }
h4 { font-size: 1.15rem; }
p  { margin: 0 0 1.15em; }

:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
@media (min-width: 700px) { .wrap { padding-inline: 32px; } }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--accent); color: #fff; padding: 12px 20px; border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }

.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;
}

/* =========================================================================
   Baslik / header
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 242, .92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header.is-scrolled { box-shadow: var(--sh-sm); border-bottom-color: var(--line); }

.header-bar {
  display: flex; align-items: center; gap: 20px;
  min-height: 70px;
}
@media (min-width: 1000px) { .header-bar { min-height: 84px; } }

/* Logo */
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; flex-shrink: 0; }
.brand-mark {
  width: 38px; height: 38px; flex: none;
  color: var(--accent);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--ff-display); font-weight: 700; font-size: 1.32rem;
  font-variation-settings: 'opsz' 40; letter-spacing: -.02em; color: var(--text);
}
.brand-tag {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-faint); font-weight: 500; margin-top: 3px;
}

/* Ana menu */
.nav-primary { display: none; }
@media (min-width: 1000px) { .nav-primary { display: block; } }

.nav-primary ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; }
.nav-primary li { position: relative; }
.nav-primary > ul > li > a {
  display: block; padding: 10px 13px; text-decoration: none;
  font-size: .95rem; font-weight: 500; color: var(--text);
  border-radius: var(--r-sm); transition: background .18s ease, color .18s ease;
  white-space: nowrap;
}
.nav-primary > ul > li > a:hover,
.nav-primary > ul > li.current-menu-item > a,
.nav-primary > ul > li.current-menu-parent > a,
.nav-primary > ul > li.current-menu-ancestor > a { background: var(--accent-tint); color: var(--accent-dark); }

.nav-primary li.menu-item-has-children > a::after {
  content: ''; display: inline-block; width: .38em; height: .38em; margin-left: .5em;
  border-right: 1.8px solid currentColor; border-bottom: 1.8px solid currentColor;
  transform: translateY(-2px) rotate(45deg); opacity: .5;
}

/* Acilir alt menu */
.nav-primary ul ul {
  position: absolute; top: calc(100% + 6px); left: 0; z-index: 60;
  min-width: 232px; flex-direction: column; align-items: stretch; gap: 0;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: var(--sh-lg);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-primary li:hover > ul,
.nav-primary li:focus-within > ul { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-primary ul ul a {
  display: block; padding: 9px 12px; text-decoration: none; border-radius: var(--r-sm);
  font-size: .92rem; color: var(--text-soft); transition: background .15s, color .15s;
}
.nav-primary ul ul a:hover { background: var(--accent-tint); color: var(--accent-dark); }
.nav-primary ul ul ul { top: -9px; left: calc(100% + 6px); }

/* Sag taraftaki eylemler */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.icon-btn {
  display: grid; place-items: center; width: 42px; height: 42px;
  background: none; border: 1px solid transparent; border-radius: 50%;
  color: var(--text); cursor: pointer; padding: 0;
  transition: background .18s, border-color .18s;
}
.icon-btn:hover { background: var(--accent-tint); border-color: var(--line); color: var(--accent-dark); }
.icon-btn svg { width: 20px; height: 20px; }

/* Dil secici */
.lang-switch { display: flex; align-items: center; gap: 2px; background: var(--bg-sand); border-radius: 999px; padding: 3px; }
.lang-switch a {
  display: block; padding: 5px 11px; border-radius: 999px; text-decoration: none;
  font-size: .78rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: var(--text-soft); transition: background .18s, color .18s;
}
.lang-switch a:hover { color: var(--accent-dark); }
.lang-switch a.is-active { background: var(--surface); color: var(--text); box-shadow: var(--sh-sm); }

/* Mobil menu dugmesi */
.burger { display: grid; }
@media (min-width: 1000px) { .burger { display: none; } }
.burger span {
  display: block; width: 20px; height: 1.8px; background: currentColor; border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

/* ---------- Mobil cekmece ---------- */
.drawer {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg); overflow-y: auto;
  transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1);
  visibility: hidden;
}
.drawer.is-open { transform: translateX(0); visibility: visible; }
@media (min-width: 1000px) { .drawer { display: none; } }

.drawer-head { display: flex; align-items: center; justify-content: space-between; min-height: 70px; }
.drawer-body { padding-bottom: 48px; }
.drawer nav ul { list-style: none; margin: 0; padding: 0; }
.drawer nav > ul > li { border-bottom: 1px solid var(--line-soft); }
.drawer nav a {
  display: block; padding: 15px 2px; text-decoration: none; font-size: 1.06rem;
  font-weight: 500; color: var(--text);
}
.drawer nav ul ul { padding: 0 0 12px 16px; border-left: 2px solid var(--line); margin-left: 2px; }
.drawer nav ul ul li { border: 0; }
.drawer nav ul ul a { padding: 9px 0; font-size: .96rem; color: var(--text-soft); font-weight: 400; }
.drawer .lang-switch { margin-top: 26px; align-self: flex-start; display: inline-flex; }

/* ---------- Arama katmani ---------- */
.search-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(43, 37, 34, .55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: grid; place-items: start center; padding: 14vh 20px 20px;
  opacity: 0; visibility: hidden; transition: opacity .22s ease, visibility .22s;
}
.search-overlay.is-open { opacity: 1; visibility: visible; }
.search-panel {
  width: min(640px, 100%); background: var(--surface);
  border-radius: var(--r-lg); box-shadow: var(--sh-lg); padding: 26px;
  transform: translateY(-10px); transition: transform .22s ease;
}
.search-overlay.is-open .search-panel { transform: translateY(0); }
.search-panel label { display: block; font-size: .8rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-faint); margin-bottom: 10px; }

.search-field { display: flex; gap: 10px; }
.search-field input[type="search"] {
  flex: 1; min-width: 0; font: inherit; color: var(--text);
  padding: 13px 16px; background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--r-sm); transition: border-color .18s, box-shadow .18s;
}
.search-field input[type="search"]:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}

/* =========================================================================
   Dugmeler
   ========================================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  padding: 12px 24px; border-radius: 999px; border: 1px solid transparent;
  font: inherit; font-size: .94rem; font-weight: 600; text-decoration: none;
  cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .12s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-dark); background: var(--accent-tint); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45em;
  font-weight: 600; font-size: .92rem; color: var(--accent-dark); text-decoration: none;
}
.link-arrow::after { content: '→'; transition: transform .18s ease; }
.link-arrow:hover::after { transform: translateX(4px); }

/* =========================================================================
   Kategori etiketi
   ========================================================================= */
.eyebrow {
  display: inline-block; font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent-dark);
  text-decoration: none;
}
.eyebrow:hover { color: var(--accent); }

.meta-line {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: .82rem; color: var(--text-faint);
}
.meta-line .dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: .6; }

/* =========================================================================
   Hero (one cikan yazi)
   ========================================================================= */
.hero { padding: clamp(28px, 4vw, 56px) 0 clamp(36px, 5vw, 68px); }
.hero-inner {
  display: grid; gap: clamp(22px, 3vw, 44px); align-items: center;
}
@media (min-width: 900px) { .hero-inner { grid-template-columns: 1.05fr .95fr; } }

.hero-media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: var(--bg-sand); box-shadow: var(--sh-md);
  aspect-ratio: 16 / 11;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-title { margin-bottom: .35em; }
.hero-title a { text-decoration: none; }
.hero-title a:hover { color: var(--accent-dark); }
.hero-excerpt { color: var(--text-soft); font-size: 1.07rem; margin-bottom: 1.4em; }
.hero .eyebrow { margin-bottom: 14px; }

/* =========================================================================
   Kart izgarasi
   ========================================================================= */
.section { padding: clamp(36px, 5vw, 72px) 0; }
.section-sand { background: var(--bg-sand); }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: clamp(20px, 2.5vw, 34px);
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.section-head h2 { margin: 0; }
.section-head p { margin: 6px 0 0; color: var(--text-soft); font-size: .95rem; }

.grid { display: grid; gap: clamp(20px, 2.4vw, 32px); }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 640px)  { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-2 { grid-template-columns: 1fr; }
@media (min-width: 720px)  { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

.card { display: flex; flex-direction: column; }
.card-media {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--r-md); background: var(--bg-sand);
  aspect-ratio: 3 / 2; margin-bottom: 15px;
}
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
}
.card:hover .card-media img { transform: scale(1.045); }
.card-title {
  font-size: clamp(1.1rem, 1rem + .35vw, 1.3rem); margin: 8px 0 8px;
  line-height: 1.28;
}
.card-title a { text-decoration: none; }
.card-title a:hover { color: var(--accent-dark); }
.card-excerpt { color: var(--text-soft); font-size: .93rem; margin: 0 0 12px; }
.card .meta-line { margin-top: auto; }

/* Yatay kart (liste gorunumu) */
.card-row { display: grid; grid-template-columns: 116px 1fr; gap: 16px; align-items: start; }
.card-row .card-media { aspect-ratio: 1 / 1; margin-bottom: 0; }
.card-row .card-title { font-size: 1.02rem; margin: 0 0 6px; }

/* =========================================================================
   Yazi sayfasi
   ========================================================================= */
.post-header { padding: clamp(28px, 4vw, 52px) 0 0; }
.post-header .eyebrow { margin-bottom: 16px; }
.post-header h1 { max-width: 20ch; }
.post-lede {
  font-size: clamp(1.07rem, 1rem + .4vw, 1.28rem);
  color: var(--text-soft); max-width: var(--prose); margin: 0 0 1.5em;
  font-weight: 400; line-height: 1.6;
}

.post-hero {
  margin: clamp(22px, 3vw, 38px) 0 clamp(26px, 3.5vw, 44px);
  border-radius: var(--r-lg); overflow: hidden; background: var(--bg-sand);
  box-shadow: var(--sh-md);
}
.post-hero img { width: 100%; max-height: 62vh; object-fit: cover; }

/* Okuma alani */
.prose { max-width: var(--prose); margin-inline: auto; }
.prose > * { margin-inline: auto; }
.prose h2 { margin-top: 1.9em; }
.prose h3 { margin-top: 1.6em; }
.prose p, .prose li { font-size: 1.075rem; line-height: 1.78; }
.prose a { color: var(--accent-dark); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .18em; }
.prose a:hover { color: var(--accent); }
.prose img, .prose figure, .prose iframe {
  border-radius: var(--r-md); margin-block: 1.9em;
}
.prose figure { margin-inline: 0; }
.prose figcaption { font-size: .86rem; color: var(--text-faint); text-align: center; margin-top: .7em; }
.prose ul, .prose ol { padding-left: 1.3em; margin-bottom: 1.3em; }
.prose li { margin-bottom: .45em; }
.prose blockquote {
  margin: 1.9em 0; padding: 4px 0 4px 22px;
  border-left: 3px solid var(--accent);
  font-family: var(--ff-display); font-size: 1.22rem; font-style: italic; color: var(--text);
}
.prose blockquote p:last-child { margin-bottom: 0; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.6em 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.8em 0; font-size: .95rem; }
.prose th, .prose td { padding: 11px 14px; border-bottom: 1px solid var(--line); text-align: left; }
.prose th { font-weight: 600; background: var(--bg-sand); }

/* Genis gorseller icin */
.prose .alignwide, .prose .wp-block-image.alignwide { max-width: min(100%, 58rem); }
.prose .alignfull { max-width: none; width: 100vw; margin-left: 50%; transform: translateX(-50%); border-radius: 0; }

/* "Devamini goster" acilir bolum (bg_collapse yerine) */
.cch-more {
  margin: 1.9em 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.cch-more > summary {
  cursor: pointer; list-style: none; padding: 14px 2px;
  font-weight: 600; color: var(--accent-dark);
  display: flex; align-items: center; gap: .5em;
}
.cch-more > summary::-webkit-details-marker { display: none; }
.cch-more > summary::after {
  content: ''; width: .45em; height: .45em; margin-left: auto;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform .2s ease;
}
.cch-more[open] > summary::after { transform: rotate(-135deg) translateY(-2px); }
.cch-more[open] > summary { border-bottom: 1px solid var(--line-soft); }
.cch-more > *:not(summary) { padding-top: 10px; }

/* Icindekiler / paylas */
.post-foot {
  max-width: var(--prose); margin: clamp(32px, 4vw, 52px) auto 0;
  padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
}
.share { display: flex; gap: 8px; margin-left: auto; }
.share a {
  display: grid; place-items: center; width: 38px; height: 38px;
  border: 1px solid var(--line); border-radius: 50%; color: var(--text-soft);
  transition: background .18s, color .18s, border-color .18s;
}
.share a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.share svg { width: 17px; height: 17px; }

/* Breadcrumb */
.crumbs { font-size: .83rem; color: var(--text-faint); padding: 18px 0 0; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; }
.crumbs a { text-decoration: none; color: var(--text-soft); }
.crumbs a:hover { color: var(--accent-dark); text-decoration: underline; }
.crumbs li + li::before { content: '/'; margin-right: 7px; opacity: .45; }

/* =========================================================================
   Arsiv basligi
   ========================================================================= */
.page-hero { padding: clamp(30px, 4vw, 58px) 0 clamp(22px, 3vw, 36px); border-bottom: 1px solid var(--line); }
.page-hero h1 { margin-bottom: .25em; }
.page-hero p { color: var(--text-soft); max-width: 58ch; margin: 0; }

/* Sayfalama */
.pagination { display: flex; justify-content: center; gap: 7px; margin-top: clamp(32px, 4vw, 54px); flex-wrap: wrap; }
.pagination .page-numbers {
  display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 12px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  text-decoration: none; font-size: .93rem; font-weight: 500; color: var(--text-soft);
  transition: background .16s, color .16s, border-color .16s;
}
.pagination .page-numbers:hover { border-color: var(--accent); color: var(--accent-dark); }
.pagination .page-numbers.current { background: var(--accent); border-color: var(--accent); color: #fff; }
.pagination .dots { border-color: transparent; }

/* =========================================================================
   Alt bilgi / footer
   ========================================================================= */
.site-footer {
  margin-top: clamp(48px, 6vw, 88px);
  background: var(--text); color: #E8DFD6;
  padding: clamp(40px, 5vw, 66px) 0 28px;
}
.footer-grid { display: grid; gap: 32px; }
@media (min-width: 720px)  { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

.site-footer .brand-name { color: #fff; }
.site-footer .brand-tag  { color: rgba(232, 223, 214, .55); }
.site-footer .brand-mark { color: var(--accent); }
.footer-about { color: rgba(232, 223, 214, .72); font-size: .94rem; margin: 16px 0 0; max-width: 42ch; }

.site-footer h3 {
  font-family: var(--ff-body); font-size: .76rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(232, 223, 214, .55); margin-bottom: 14px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: rgba(232, 223, 214, .86); text-decoration: none; font-size: .94rem; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: .2em; }

.footer-bottom {
  margin-top: clamp(30px, 4vw, 48px); padding-top: 20px;
  border-top: 1px solid rgba(232, 223, 214, .14);
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  font-size: .85rem; color: rgba(232, 223, 214, .55);
}
.footer-bottom .lang-switch { background: rgba(232, 223, 214, .1); margin-left: auto; }
.footer-bottom .lang-switch a { color: rgba(232, 223, 214, .7); }
.footer-bottom .lang-switch a.is-active { background: rgba(232, 223, 214, .18); color: #fff; box-shadow: none; }

/* =========================================================================
   404 / arama sonucu yok
   ========================================================================= */
.empty-state { text-align: center; padding: clamp(50px, 8vw, 110px) 0; max-width: 46ch; margin-inline: auto; }
.empty-state h1 { font-size: clamp(3.4rem, 2rem + 6vw, 6rem); color: var(--accent); margin-bottom: .1em; }
.empty-state p { color: var(--text-soft); margin-bottom: 1.8em; }

/* =========================================================================
   Yardimcilar
   ========================================================================= */
.is-hidden { display: none !important; }
body.no-scroll { overflow: hidden; }

@media print {
  .site-header, .site-footer, .share, .pagination, .crumbs { display: none; }
  body { background: #fff; }
}

/* ---------- Kart govdesi ve gorsel yer tutucu ---------- */
.card-body { display: flex; flex-direction: column; flex: 1 1 auto; }
.card-row .card-body { justify-content: center; }

.thumb-fallback {
  display: block; width: 100%; height: 100%;
  background:
    radial-gradient(120% 90% at 50% 120%, var(--accent-tint) 0%, transparent 60%),
    linear-gradient(160deg, var(--bg-sand) 0%, #E8DBC9 100%);
  position: relative;
}
.thumb-fallback::after {
  content: ''; position: absolute; inset: 0;
  background: no-repeat center / 34% url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40' fill='none' stroke='%23B4553C' stroke-opacity='.32' stroke-width='2.2' stroke-linejoin='round'%3E%3Cpath d='M6 34h28'/%3E%3Cpath d='M11 34V19c0-5 4-9 9-9s9 4 9 9v15'/%3E%3Cpath d='M16 34v-7a4 4 0 0 1 8 0v7'/%3E%3C/svg%3E");
}

/* Hero metni mobilde once gelmesin diye gorsel ustte kalsin */
@media (max-width: 899px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { aspect-ratio: 16 / 10; }
}

/* Dar ekranda bolum basligi alt alta */
@media (max-width: 560px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 10px; }
}
