/* ==========================================================================
   Sema Uzun Güzellik ve Danışmanlık Merkezi
   Tasarım sistemi — "editoryal atölye": sıcak kâğıt, espresso mürekkep,
   terracotta-gül aksan. Sade, ince çizgili, geniş nefes alanlı.
   ========================================================================== */

/* --- Tokenlar ------------------------------------------------------------ */
:root {
  --paper:       #faf6f1;
  --paper-2:     #f3eae1;
  --paper-3:     #e9ddd2;
  --ink:         #241c1a;
  --ink-2:       #4a3c36;
  --muted:       #7c6d66;
  --accent:      #a8695c;
  --accent-deep: #874f45;
  --accent-soft: #e7d3c9;

  --line:        rgba(36, 28, 26, .13);
  --line-soft:   rgba(36, 28, 26, .07);

  --shadow-sm:   0 1px 2px rgba(58, 40, 32, .05), 0 8px 22px -14px rgba(58, 40, 32, .22);
  --shadow-md:   0 2px 4px rgba(58, 40, 32, .04), 0 22px 44px -26px rgba(58, 40, 32, .34);

  --display:     "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans:        "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --wrap:        1180px;
  --gutter:      clamp(20px, 5vw, 48px);
  --r:           3px;
  --ease:        cubic-bezier(.22, .61, .36, 1);
  --nav-h:       76px;
}

/* --- 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; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(15.5px, .55vw + 14px, 17px);
  line-height: 1.75;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* İnce grain dokusu — düz renk yerine atmosfer */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 400; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--accent-soft); color: var(--ink); }

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 860px; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 16px; top: -100px;
  z-index: 200;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--paper);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* --- Tipografi ---------------------------------------------------------- */
.display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.015em;
  text-wrap: balance;
}
.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.d1 { font-size: clamp(2.9rem, 7.2vw, 5.6rem); }
.d2 { font-size: clamp(2.3rem, 4.6vw, 3.5rem); }
.d3 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); line-height: 1.18; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  margin: 0 0 1.1rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}

.lede {
  font-size: clamp(1.02rem, .5vw + .92rem, 1.2rem);
  line-height: 1.72;
  color: var(--ink-2);
  text-wrap: pretty;
}

.muted { color: var(--muted); }

.section {
  padding-block: clamp(64px, 9vw, 132px);
  position: relative;
}
.section--tint { background: var(--paper-2); }
.section--ink  { background: var(--ink); color: var(--paper); }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(40px, 5vw, 68px);
}
.section-head--center {
  max-width: 660px;
  margin-inline: auto;
  text-align: center;
}

.rule {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 0;
}

/* --- Butonlar ----------------------------------------------------------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
  --btn-bd: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7em;
  padding: 1em 2.1em;
  border: 1px solid var(--btn-bd);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform .42s var(--ease);
}
.btn:hover { color: #fff; border-color: var(--accent); }
.btn:hover::before { transform: translateY(0); }
.btn:active { transform: translateY(1px); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: var(--line);
}
.btn--ghost:hover { color: #fff; }

.btn--light {
  --btn-bg: var(--paper);
  --btn-fg: var(--ink);
  --btn-bd: var(--paper);
}

.btn--sm { padding: .78em 1.5em; font-size: .7rem; }
.btn--block { display: flex; width: 100%; }

.btn .ico { width: 15px; height: 15px; }

/* Alt çizgili metin bağlantısı */
.link {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  transition: color .3s var(--ease), background-size .4s var(--ease);
}
.link:hover { color: var(--accent); }
.link .ico { width: 14px; height: 14px; transition: transform .35s var(--ease); }
.link:hover .ico { transform: translateX(4px); }

.ico { width: 18px; height: 18px; flex: none; stroke-width: 1.4; }

/* --- Üst menü ----------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: transparent;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 246, 241, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.site-header.is-solid { border-bottom-color: var(--line-soft); }
.site-header.is-solid::before { opacity: 1; }

/* Hero üstünde şeffaf başlarken açık renk yazı */
.site-header--over:not(.is-solid) { color: #fff; }
.site-header--over:not(.is-solid) .brand__mark { border-color: rgba(255,255,255,.5); color: #fff; }
.site-header--over:not(.is-solid) .nav__link::after { background: #fff; }
.site-header--over:not(.is-solid) .nav__toggle span { background: #fff; }

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--nav-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  line-height: 1.1;
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.02rem;
  letter-spacing: .02em;
  transition: border-color .4s var(--ease), color .4s var(--ease);
}
.brand__text {
  display: flex;
  flex-direction: column;
}
.brand__name {
  font-family: var(--display);
  font-size: 1.16rem;
  letter-spacing: .01em;
  white-space: nowrap;
}
.brand__sub {
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .62;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__link {
  position: relative;
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding-block: 6px;
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .38s var(--ease);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav__link[aria-current="page"] { color: var(--accent); }

.nav__cta { margin-left: 8px; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  margin-right: -10px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  position: relative;
}
.nav__toggle span {
  position: absolute;
  left: 11px;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform .34s var(--ease), opacity .2s var(--ease), background .4s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 17px; }
.nav__toggle span:nth-child(2) { top: 22px; }
.nav__toggle span:nth-child(3) { top: 27px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px var(--gutter) 34px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    color: var(--ink);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
  }
  .nav__links.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__links li { width: 100%; border-bottom: 1px solid var(--line-soft); }
  .nav__links li:last-child { border-bottom: 0; }
  .nav__link {
    display: block;
    width: 100%;
    padding-block: 17px;
    font-size: .92rem;
    letter-spacing: .1em;
  }
  .nav__link::after { display: none; }
  .nav__cta { margin: 20px 0 0; }
  .brand__sub { display: none; }
}
@media (max-width: 400px) {
  .brand__name { font-size: 1rem; white-space: normal; line-height: 1.15; }
}

/* --- Hero (ana sayfa) --------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: clamp(56px, 8vw, 104px);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 16s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.09); } to { transform: scale(1); } }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(24,17,15,.52) 0%, rgba(24,17,15,.12) 34%, rgba(24,17,15,.78) 100%),
    radial-gradient(120% 80% at 10% 100%, rgba(120,62,50,.42), transparent 62%);
}
.hero__inner { max-width: 760px; }
.hero .eyebrow { color: var(--accent-soft); }
.hero__title { margin-bottom: .38em; }
.hero__title em { color: var(--accent-soft); }
.hero__text {
  max-width: 46ch;
  margin-bottom: 2.4rem;
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, .5vw + .9rem, 1.16rem);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 34px;
  margin-top: clamp(40px, 6vw, 68px);
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.22);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}
.hero__meta span { display: inline-flex; align-items: center; gap: .6em; }
.hero__meta .ico { width: 15px; height: 15px; opacity: .8; }

/* --- İç sayfa başlığı --------------------------------------------------- */
.pagehead {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(52px, 8vw, 104px));
  padding-bottom: clamp(44px, 6vw, 80px);
  background: var(--paper-2);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.pagehead::after {
  content: "";
  position: absolute;
  right: -140px; top: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,105,92,.13), transparent 68%);
  pointer-events: none;
}
.pagehead__inner { position: relative; max-width: 780px; }
.pagehead .lede { margin-top: 1.1rem; max-width: 58ch; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55em;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.crumbs li { display: inline-flex; align-items: center; gap: .55em; }
.crumbs li + li::before { content: "—"; opacity: .45; }
.crumbs a:hover { color: var(--accent); }
.crumbs [aria-current] { color: var(--ink); }

/* --- Hizmet kartları ---------------------------------------------------- */
.grid { display: grid; gap: clamp(18px, 2.4vw, 30px); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card-service {
  position: relative;
  padding: clamp(30px, 3.4vw, 44px) clamp(26px, 3vw, 36px);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.section--tint .card-service { background: var(--paper); }
.card-service::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--ease);
}
.card-service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card-service:hover::after { transform: scaleX(1); }

.card-service__num {
  position: absolute;
  top: 22px; right: 26px;
  font-family: var(--display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--accent);
  opacity: .17;
}
.card-service__icon {
  width: 46px; height: 46px;
  margin-bottom: 22px;
  color: var(--accent);
  stroke-width: 1.1;
}
.card-service h3 {
  font-family: var(--display);
  font-size: 1.52rem;
  margin-bottom: .5rem;
}
.card-service p { color: var(--muted); font-size: .95rem; margin: 0; }

/* --- Görsel + metin bloğu ----------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
}
.split--reverse > *:first-child { order: 2; }
@media (max-width: 700px) { .split--reverse > *:first-child { order: 0; } }

.figure {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
}
.figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .9s var(--ease);
}
.figure:hover img { transform: scale(1.035); }
.figure--wide img { aspect-ratio: 3 / 2; }

/* Görselin köşesine oturan ince çerçeve detayı */
.figure--framed { padding: 14px; }
.figure--framed::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--accent);
  opacity: .35;
  border-radius: var(--r);
  pointer-events: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 26px;
  margin-top: clamp(30px, 4vw, 46px);
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.stat__n {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  line-height: 1;
  color: var(--accent);
}
.stat__l {
  display: block;
  margin-top: .5rem;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- Galeri ------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
}
.g-item {
  position: relative;
  display: block;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper-3);
  cursor: zoom-in;
}
.g-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .5s var(--ease);
}
.g-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(24,17,15,.72));
  opacity: 0;
  transition: opacity .45s var(--ease);
}
.g-item__cap {
  position: absolute;
  left: 18px; right: 18px; bottom: 16px;
  z-index: 2;
  color: #fff;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  transform: translateY(10px);
  opacity: 0;
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.g-item:hover img { transform: scale(1.06); }
.g-item:hover::after { opacity: 1; }
.g-item:hover .g-item__cap,
.g-item:focus-visible .g-item__cap { opacity: 1; transform: translateY(0); }

/* Ana sayfadaki şerit galeri */
.gallery-strip {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
.gallery-strip .g-item img { aspect-ratio: 1 / 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(20px, 5vw, 60px);
  background: rgba(21, 15, 13, .93);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 82svh;
  width: auto;
  object-fit: contain;
  border-radius: var(--r);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,.8);
  transform: scale(.97);
  transition: transform .35s var(--ease);
}
.lightbox.is-open img { transform: scale(1); }
.lightbox__cap {
  margin-top: 18px;
  text-align: center;
  color: rgba(255,255,255,.8);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.lightbox__btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: #fff;
  cursor: pointer;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.lightbox__btn:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); }
.lightbox__close { top: clamp(16px, 3vw, 30px); right: clamp(16px, 3vw, 30px); }
.lightbox__prev { left: clamp(10px, 2.4vw, 30px); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: clamp(10px, 2.4vw, 30px); top: 50%; transform: translateY(-50%); }
@media (max-width: 620px) {
  .lightbox__prev { left: 12px; }
  .lightbox__next { right: 12px; }
  .lightbox__btn { width: 44px; height: 44px; }
}

/* --- Blog kartları ------------------------------------------------------ */
.post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.post-card__media { overflow: hidden; background: var(--paper-3); }
.post-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.post-card:hover .post-card__media img { transform: scale(1.055); }
.post-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(22px, 2.4vw, 30px);
}
.post-card h3 {
  font-family: var(--display);
  font-size: 1.42rem;
  line-height: 1.22;
  margin-bottom: .55rem;
}
.post-card h3 a { background-image: linear-gradient(var(--accent), var(--accent)); background-repeat: no-repeat; background-position: 0 100%; background-size: 0 1px; transition: background-size .4s var(--ease), color .3s var(--ease); }
.post-card:hover h3 a { background-size: 100% 1px; color: var(--accent); }
.post-card p { color: var(--muted); font-size: .93rem; }
.post-card__foot { margin-top: auto; padding-top: 18px; }

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .7em 1.1em;
  margin-bottom: .9rem;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}
.post-meta__cat { color: var(--accent); font-weight: 500; }
.post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: .5; }

/* Öne çıkan yazı */
.feature-post {
  position: relative;
  display: grid;
  border-radius: var(--r);
  overflow: hidden;
  min-height: clamp(360px, 46vw, 500px);
  isolation: isolate;
  margin-bottom: clamp(30px, 4vw, 52px);
}
.feature-post img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}
.feature-post::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(24,17,15,.15) 0%, rgba(24,17,15,.42) 45%, rgba(24,17,15,.86) 100%);
}
.feature-post:hover img { transform: scale(1.04); }
.feature-post__body {
  align-self: end;
  padding: clamp(26px, 3.6vw, 46px);
  color: #fff;
  max-width: 620px;
}
.feature-post__body h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.1;
  margin-bottom: .5rem;
}
.feature-post__body p { color: rgba(255,255,255,.84); }
.feature-post .post-meta { color: rgba(255,255,255,.78); }
.feature-post .post-meta__cat { color: var(--accent-soft); }

.badge {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 2;
  padding: .55em 1.15em;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* --- Blog: içerik + kenar çubuğu ---------------------------------------- */
.layout-article {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(40px, 5vw, 64px);
}
@media (min-width: 1000px) {
  .layout-article { grid-template-columns: minmax(0, 1fr) 330px; }
}

.sidebar { display: flex; flex-direction: column; gap: 26px; }
@media (min-width: 1000px) {
  .sidebar { position: sticky; top: calc(var(--nav-h) + 26px); align-self: start; }
}

.widget {
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
}
.section--tint .widget { background: var(--paper); }
.widget__title {
  font-family: var(--display);
  font-size: 1.28rem;
  margin-bottom: 1rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--line);
}
.widget--accent { background: var(--ink); color: var(--paper); border-color: transparent; }
.widget--accent .widget__title { border-bottom-color: rgba(250,246,241,.18); }
.widget--accent p { color: rgba(250,246,241,.75); }

.list-links { margin: 0; padding: 0; list-style: none; }
.list-links li + li { border-top: 1px solid var(--line-soft); }
.list-links a,
.list-links > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: .72em 0;
  font-size: .92rem;
  transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.list-links a:hover { color: var(--accent); padding-left: 6px; }
.count {
  min-width: 26px;
  padding: .16em .5em;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--muted);
  font-size: .68rem;
  text-align: center;
  letter-spacing: .06em;
}

.mini-post {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: .8em 0;
}
.mini-post + .mini-post { border-top: 1px solid var(--line-soft); }
.mini-post img {
  width: 62px; height: 62px;
  flex: none;
  object-fit: cover;
  border-radius: var(--r);
  background: var(--paper-3);
}
.mini-post h4 {
  font-size: .92rem;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: .2rem;
  transition: color .3s var(--ease);
}
.mini-post a:hover h4 { color: var(--accent); }
.mini-post time {
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
}

.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: .48em 1em;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--muted);
  transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
a.tag:hover { color: #fff; background: var(--accent); border-color: var(--accent); }

/* --- Makale metni (prose) ----------------------------------------------- */
.prose { max-width: 72ch; font-size: 1.05rem; line-height: 1.85; color: var(--ink-2); }
.prose > * + * { margin-top: 1.15em; }
.prose h2, .prose h3, .prose h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.2;
  margin-top: 2.1em;
  margin-bottom: .55em;
}
.prose h2 { font-size: clamp(1.7rem, 2.6vw, 2.1rem); }
.prose h3 { font-size: clamp(1.42rem, 2.1vw, 1.7rem); }
.prose h4 { font-size: 1.2rem; }
.prose p { margin: 0 0 1.15em; }
.prose a {
  color: var(--accent);
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
}
.prose a:hover { color: var(--accent-deep); }
.prose strong { font-weight: 500; color: var(--ink); }
.prose ul, .prose ol { margin: 0 0 1.3em; padding-left: 1.35em; }
.prose li { margin-bottom: .55em; padding-left: .25em; }
.prose ul { list-style: none; padding-left: 0; }
.prose ul > li {
  position: relative;
  padding-left: 1.5em;
}
.prose ul > li::before {
  content: "";
  position: absolute;
  left: .15em; top: .78em;
  width: 6px; height: 6px;
  border: 1px solid var(--accent);
  border-radius: 50%;
}
.prose ol { list-style: none; counter-reset: p; padding-left: 0; }
.prose ol > li {
  position: relative;
  counter-increment: p;
  padding-left: 2.1em;
}
.prose ol > li::before {
  content: counter(p, decimal-leading-zero);
  position: absolute;
  left: 0; top: .06em;
  font-family: var(--display);
  font-size: .95em;
  color: var(--accent);
}
.prose blockquote {
  margin: 2em 0;
  padding: .2em 0 .2em 1.6em;
  border-left: 2px solid var(--accent);
  font-family: var(--display);
  font-size: 1.42rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
}
.prose img { border-radius: var(--r); margin-block: 1.8em; }

.article-foot {
  margin-top: clamp(40px, 5vw, 60px);
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 26px 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.share { display: flex; align-items: center; gap: 10px; }
.share__label {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 4px;
}
.share a {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-2);
  transition: color .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.share a:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.author-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: clamp(34px, 4vw, 48px);
  padding: clamp(22px, 2.6vw, 32px);
  background: var(--paper-2);
  border-radius: var(--r);
}
.author-box img {
  width: 72px; height: 72px;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
}
.author-box h3 { font-family: var(--display); font-size: 1.3rem; }
.author-box .role {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
}
.author-box p { margin: .7rem 0 0; font-size: .94rem; color: var(--muted); flex-basis: 100%; }

/* Sayfalama */
.pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(38px, 5vw, 58px);
}
.pager a, .pager span {
  display: grid;
  place-items: center;
  min-width: 44px; height: 44px;
  padding-inline: .7em;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .88rem;
  color: var(--ink-2);
  transition: color .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.pager a:hover { color: #fff; background: var(--accent); border-color: var(--accent); }
.pager [aria-current="page"] { color: #fff; background: var(--ink); border-color: var(--ink); }
.pager .is-disabled { opacity: .35; pointer-events: none; }

/* --- Yorumlar ----------------------------------------------------------- */
.quote {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(28px, 3vw, 38px);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  position: relative;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.quote::before {
  content: "\201C";
  position: absolute;
  top: 4px; right: 24px;
  font-family: var(--display);
  font-size: 5.4rem;
  line-height: 1;
  color: var(--accent);
  opacity: .16;
}
.quote__stars { display: flex; gap: 3px; margin-bottom: 1rem; color: var(--accent); }
.quote__stars .ico { width: 15px; height: 15px; }
.quote__text {
  font-family: var(--display);
  font-size: 1.28rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1.6rem;
}
.quote__who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.quote__who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.quote__name { font-size: .95rem; }
.quote__role { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }

/* --- İletişim ----------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 4vw, 60px);
}

.field { margin-bottom: 18px; }
.field label {
  display: block;
  margin-bottom: .5rem;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: .92em 1.05em;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: .98rem;
  font-weight: 300;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 132px; line-height: 1.65; }
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); opacity: .65; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(168,105,92,.13);
}
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0 18px; }

.info-list { margin: 0; padding: 0; list-style: none; }
.info-list li {
  display: flex;
  gap: 16px;
  padding-block: 20px;
  border-bottom: 1px solid var(--line-soft);
}
.info-list li:first-child { padding-top: 0; }
.info-list li:last-child { border-bottom: 0; }
.info-list .ico { color: var(--accent); margin-top: 4px; }
.info-list dt {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .3rem;
}
.info-list dd { margin: 0; font-size: 1.02rem; }
.info-list dd a { transition: color .3s var(--ease); }
.info-list dd a:hover { color: var(--accent); }

.hours { margin: 0; }
.hours div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: .45em;
  font-size: .95rem;
}
.hours div + div { border-top: 1px dashed var(--line-soft); }
.hours dt { color: var(--muted); }
.hours dd { margin: 0; }
.hours .closed { color: var(--accent); }

/* --- CTA şeridi --------------------------------------------------------- */
.cta-band {
  position: relative;
  padding-block: clamp(56px, 7vw, 96px);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 120% at 50% 0%, rgba(168,105,92,.34), transparent 62%);
}
.cta-band > * { position: relative; }
.cta-band .eyebrow { color: var(--accent-soft); }
.cta-band h2 { font-family: var(--display); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .5em; }
.cta-band p { max-width: 52ch; margin-inline: auto; color: rgba(250,246,241,.76); }
.cta-band .btn { --btn-bg: var(--paper); --btn-fg: var(--ink); --btn-bd: var(--paper); margin-top: 2rem; }

/* --- Alt bilgi ---------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(250, 246, 241, .74);
  padding-top: clamp(56px, 7vw, 88px);
  font-size: .93rem;
}
.site-footer a { transition: color .3s var(--ease); }
.site-footer a:hover { color: var(--accent-soft); }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(30px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 62px);
}
.footer-brand { max-width: 34ch; }
.footer-brand .brand { color: var(--paper); margin-bottom: 1.2rem; }
.footer-brand .brand__mark { border-color: rgba(250,246,241,.28); }

.footer-title {
  margin-bottom: 1.25rem;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--paper);
}
.footer-list { margin: 0; padding: 0; list-style: none; }
.footer-list li + li { margin-top: .72em; }

.socials { display: flex; gap: 10px; margin-top: 1.5rem; }
.socials a {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(250,246,241,.2);
  border-radius: 50%;
  color: var(--paper);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  align-items: center;
  padding-block: 26px;
  border-top: 1px solid rgba(250, 246, 241, .13);
  font-size: .8rem;
  letter-spacing: .04em;
}

/* --- Yüzen hızlı işlem butonları ---------------------------------------- */
.quick-actions {
  position: fixed;
  right: clamp(14px, 2.4vw, 26px);
  bottom: clamp(14px, 2.4vw, 26px);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quick-actions a {
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-md);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.quick-actions a:hover { background: var(--accent); transform: translateY(-3px); }
.quick-actions .ico { width: 21px; height: 21px; }

.to-top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .35s var(--ease), visibility .35s, transform .35s var(--ease), background .3s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* --- 404 ---------------------------------------------------------------- */
.err {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.err::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 55% at 50% 40%, rgba(168,105,92,.13), transparent 70%);
  pointer-events: none;
}
.err__inner { position: relative; max-width: 620px; }
.err__code {
  font-family: var(--display);
  font-size: clamp(7rem, 22vw, 15rem);
  line-height: .85;
  color: var(--accent);
  opacity: .22;
  letter-spacing: -.03em;
  margin-bottom: -.12em;
}
.err__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 2.2rem;
}

/* --- Giriş animasyonları ------------------------------------------------ */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

.js .hero [data-reveal] { transition-duration: 1s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* --- Yazdırma ----------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .quick-actions, .sidebar, .lightbox, body::after { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding-block: 0; }
}
