/* ============================================================
   ankaradugunsalonlari.net — tasarım sistemi
   Palet: fildişi zemin, is mürekkebi, antika altın
   ============================================================ */

:root {
  /* palet: beyaz · fildişi · şampanya · altın · antrasit-lacivert */
  --white:     #FFFFFF;
  --bg:        #FAF8F4;   /* kırık beyaz / ivory */
  --bg-soft:   #F2EBDF;   /* şampanya tonu */
  --champagne: #E3D5BD;   /* şampanya */
  --gold:      #C5A878;   /* şampanya altını */
  --gold-deep: #A4854F;   /* derin altın */
  --ink:       #20242E;   /* antrasit-lacivert */
  --ink-2:     #565B66;
  --ink-3:     #8F929B;
  --bg-dark:   #171B24;   /* koyu zemin (antrasit-lacivert) */
  --line:      #E8E1D2;
  --line-dark: rgba(255, 255, 255, .14);

  --serif: "Marcellus", "Times New Roman", serif;
  --sans:  "Figtree", -apple-system, "Segoe UI", sans-serif;

  --w: 1180px;
  --r: 2px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* kâğıt dokusu — tüm sayfaya çok hafif grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }

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

::selection { background: var(--gold); color: var(--white); }

.wrap {
  width: min(var(--w), calc(100% - 48px));
  margin-inline: auto;
}

/* ---------- tipografi ---------- */

h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.01em;
  margin: 0;
}

h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.45rem; }

.lead {
  font-size: 1.1rem;
  color: var(--ink-2);
  max-width: 56ch;
}

em.tint {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 18px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

/* ---------- butonlar ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}

.btn:hover { background: var(--gold-deep); border-color: var(--gold-deep); }

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(33, 30, 25, .35);
}

.btn.ghost:hover { background: var(--ink); color: var(--white); }

.btn .arr { font-family: var(--serif); font-size: 1.05rem; line-height: 1; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: border-color .25s;
}

.textlink:hover { border-color: var(--gold); }

/* ---------- üst bar + header ---------- */

.topline {
  background: var(--bg-dark);
  color: rgba(255, 253, 249, .75);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 16px;
}

.topline b { color: var(--gold); font-weight: 600; }

.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 243, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-head .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand { display: flex; flex-direction: column; line-height: 1; }

.brand .mark {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .01em;
}

.brand .mark span { color: var(--gold-deep); font-style: italic; }

.brand .sub {
  margin-top: 5px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.site-nav { display: flex; align-items: center; gap: 34px; }

.site-nav a {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .25s, border-color .25s;
}

.site-nav a:hover { color: var(--ink); }

.site-nav a.on {
  color: var(--ink);
  border-color: var(--gold);
}

.nav-btn {
  display: none;
  background: none;
  border: 1px solid var(--line);
  padding: 10px 12px;
  cursor: pointer;
}

.nav-btn span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  margin: 4px 0;
  transition: transform .3s var(--ease), opacity .2s;
}

/* ---------- hero ---------- */

.hero { position: relative; padding: clamp(54px, 8vw, 110px) 0 0; overflow: hidden; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

.hero-copy .lead { margin: 26px 0 36px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-art {
  position: relative;
  padding: 0 0 56px 56px;
}

.hero-art .ph-main {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r);
}

.hero-art .ph-sub {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border: 6px solid var(--bg);
  border-radius: var(--r);
}

.hero-art::before {
  content: "";
  position: absolute;
  top: -26px;
  right: -26px;
  width: 58%;
  height: 70%;
  border: 1px solid var(--gold);
  border-radius: var(--r);
  opacity: .55;
  pointer-events: none;
}

.hero-stats {
  margin-top: clamp(48px, 7vw, 84px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-stats .stat {
  padding: 26px 12px;
  text-align: center;
}

.hero-stats .stat + .stat { border-left: 1px solid var(--line); }

.stat .num {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

.stat .lbl {
  margin-top: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ---------- section düzeni ---------- */

.section { padding: clamp(64px, 9vw, 120px) 0; }

.section.tinted { background: var(--bg-soft); }

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.sec-head .lead { margin: 14px 0 0; }

.sec-head .textlink { flex-shrink: 0; margin-bottom: 8px; }

/* ---------- salon kartları ---------- */

.salon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.salon-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.salon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -24px rgba(33, 30, 25, .28);
}

.salon-card .ph {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.salon-card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.salon-card:hover .ph img { transform: scale(1.05); }

.salon-card .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(250, 248, 243, .94);
  color: var(--ink);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: var(--r);
}

.salon-card .body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }

.salon-card .meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}

.salon-card .meta i {
  font-style: normal;
  color: var(--ink-3);
}

.salon-card .meta i::before { content: "·"; margin-right: 10px; color: var(--line); }

.salon-card .meta .rate {
  margin-left: auto;
  color: var(--gold-deep);
  font-size: .72rem;
  letter-spacing: .08em;
  white-space: nowrap;
}

.salon-card h3 { margin-bottom: 8px; }

.salon-card p {
  margin: 0 0 18px;
  font-size: .92rem;
  color: var(--ink-2);
  flex: 1;
}

.salon-card .foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.salon-card .cap {
  font-size: .78rem;
  color: var(--ink-3);
}

.salon-card .cap b {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

/* ---------- ilçe şeritleri ---------- */

.district-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.district-row a {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-2);
  border: 1px solid var(--line);
  background: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  transition: border-color .25s, color .25s, background .25s;
}

.district-row a:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

/* ---------- nasıl çalışır ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.step { padding: 40px 36px; }

.step + .step { border-left: 1px solid var(--line); }

.step .no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
}

.step h3 { margin: 18px 0 10px; }

.step p { margin: 0; font-size: .92rem; color: var(--ink-2); }

/* ---------- blog kartları ---------- */

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.post-card { display: flex; flex-direction: column; }

.post-card .ph {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--r);
  margin-bottom: 20px;
}

.post-card .ph img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.post-card:hover .ph img { transform: scale(1.05); }

.post-card .date {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}

.post-card h3 { line-height: 1.25; }

.post-card h3 a { transition: color .25s; }

.post-card h3 a:hover { color: var(--gold-deep); }

.post-card p {
  margin: 10px 0 0;
  font-size: .92rem;
  color: var(--ink-2);
}

/* ---------- alt CTA ---------- */

.cta {
  background: var(--bg-dark);
  color: var(--white);
  text-align: center;
  padding: clamp(70px, 10vw, 120px) 0;
}

.cta .eyebrow { justify-content: center; color: var(--gold); }
.cta .eyebrow::before { background: var(--gold); }

.cta h2 { max-width: 22ch; margin-inline: auto; font-weight: 500; }

.cta p {
  color: rgba(255, 253, 249, .68);
  max-width: 52ch;
  margin: 20px auto 36px;
}

.cta .btn { background: var(--gold-deep); border-color: var(--gold-deep); }
.cta .btn:hover { background: var(--gold); border-color: var(--gold); }

/* ---------- footer ---------- */

.site-foot {
  background: var(--bg-dark);
  color: rgba(255, 253, 249, .7);
  border-top: 1px solid var(--line-dark);
  font-size: .9rem;
}

.site-foot .cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding: clamp(48px, 7vw, 80px) 0;
}

.site-foot .brand .mark { color: var(--white); }
.site-foot .brand .sub { color: rgba(255, 253, 249, .45); }

.site-foot p { margin: 18px 0 0; max-width: 38ch; }

.site-foot h4 {
  margin: 0 0 18px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-foot ul { list-style: none; margin: 0; padding: 0; }

.site-foot li + li { margin-top: 10px; }

.site-foot a { transition: color .25s; }
.site-foot a:hover { color: var(--white); }

.site-foot .base {
  border-top: 1px solid var(--line-dark);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: .76rem;
  letter-spacing: .04em;
  color: rgba(255, 253, 249, .45);
}

/* ---------- iç sayfa başlığı ---------- */

.page-head {
  padding: clamp(48px, 7vw, 80px) 0 clamp(36px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
}

.crumbs {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 22px;
}

.crumbs a:hover { color: var(--gold-deep); }
.crumbs span { margin: 0 8px; color: var(--line); }

.page-head .lead { margin-top: 18px; }

/* ---------- filtre çubuğu ---------- */

.filterbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}

.filterbar label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.filterbar select {
  appearance: none;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23A6885C' fill='none'/%3E%3C/svg%3E") no-repeat right 14px center;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 12px 38px 12px 16px;
  cursor: pointer;
}

.filterbar select:focus { outline: none; border-color: var(--gold); }

.filterbar .count {
  margin-left: auto;
  font-size: .8rem;
  color: var(--ink-3);
}

.filterbar .count b { color: var(--ink); font-weight: 700; }

.empty-note {
  display: none;
  text-align: center;
  padding: 70px 20px;
  border: 1px dashed var(--line);
  color: var(--ink-3);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
}

/* ---------- salon detay ---------- */

.detail-hero {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 6px;
  margin-top: 36px;
}

.detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r);
}

.detail-hero .main { aspect-ratio: 16 / 10; }

.detail-hero .side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
}

.detail-hero .side img { aspect-ratio: auto; min-height: 0; }

.detail-grid {
  display: grid;
  grid-template-columns: 1.6fr .9fr;
  gap: clamp(36px, 5vw, 72px);
  padding: clamp(48px, 7vw, 80px) 0;
  align-items: start;
}

.detail-body h2 { font-size: 1.8rem; margin: 38px 0 16px; }
.detail-body h2:first-child { margin-top: 0; }
.detail-body p { color: var(--ink-2); margin: 0 0 18px; }

.feature-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: .92rem;
  color: var(--ink-2);
}

.feature-list li::before {
  content: "—";
  color: var(--gold);
  flex-shrink: 0;
}

.spec-card {
  position: sticky;
  top: 110px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px;
}

.spec-card h3 {
  font-size: 1.2rem;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.spec-card dl { margin: 0; }

.spec-card .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.spec-card .row:last-child { border-bottom: 0; }

.spec-card dt {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.spec-card dd {
  margin: 0;
  font-weight: 600;
  font-size: .92rem;
  text-align: right;
}

.spec-card .note {
  margin: 20px 0 0;
  font-size: .78rem;
  color: var(--ink-3);
  font-style: italic;
}

/* ---------- makale ---------- */

.article {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(48px, 7vw, 72px) 0 clamp(64px, 9vw, 100px);
}

.article .hero-img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: var(--r);
  margin: 36px 0 44px;
}

.article h2 {
  font-size: 1.7rem;
  margin: 44px 0 16px;
}

.article h3 { font-size: 1.25rem; margin: 32px 0 12px; }

.article p { color: var(--ink-2); margin: 0 0 20px; }

/* ilk paragrafa gömme baş harf */
.article .hero-img + p::first-letter {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 3.4em;
  line-height: .82;
  float: left;
  padding: 6px 12px 0 0;
  color: var(--gold-deep);
}

.article ul, .article ol { color: var(--ink-2); padding-left: 22px; margin: 0 0 20px; }

.article li { margin-bottom: 8px; }

.article li::marker { color: var(--gold-deep); }

.article blockquote {
  margin: 36px 0;
  padding: 6px 0 6px 28px;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
}

.article .meta-row {
  display: flex;
  gap: 18px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 20px;
}

.article .meta-row b { color: var(--gold-deep); font-weight: 700; }

.article-end {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---------- 404 ---------- */

.lost {
  text-align: center;
  padding: clamp(90px, 14vw, 160px) 0;
}

.lost .big {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(5rem, 12vw, 8rem);
  color: var(--gold);
  line-height: 1;
}

.lost p { color: var(--ink-2); margin: 18px 0 36px; }

/* ---------- görünüm animasyonu ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in { opacity: 1; transform: none; }

/* grid içindeki kartlar kademeli belirsin */
.salon-grid .reveal:nth-child(3n+2), .post-grid .reveal:nth-child(3n+2) { transition-delay: .12s; }
.salon-grid .reveal:nth-child(3n),   .post-grid .reveal:nth-child(3n)   { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   v2 — editoryal düzen
   ============================================================ */

/* ---------- sinematik hero ---------- */

.hero-cine {
  position: relative;
  overflow: hidden;
  min-height: min(88vh, 880px);
  display: flex;
  align-items: flex-end;
}

.hero-cine .bg { position: absolute; inset: 0; }

.hero-cine .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 22s ease-out forwards;
}

@keyframes kenburns {
  from { transform: scale(1.09); }
  to   { transform: scale(1); }
}

.hero-cine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22, 19, 14, .88) 0%, rgba(22, 19, 14, .35) 52%, rgba(22, 19, 14, .42) 100%);
}

.hero-cine .inner {
  position: relative;
  z-index: 2;
  width: min(var(--w), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(120px, 18vh, 200px) 0 clamp(44px, 7vh, 88px);
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
  color: var(--white);
}

.hero-cine .eyebrow { color: var(--gold); }
.hero-cine .eyebrow::before { background: var(--gold); }

.hero-cine h1 {
  font-size: clamp(3rem, 8.4vw, 7rem);
  font-weight: 500;
  line-height: .97;
  letter-spacing: -.02em;
  color: var(--white);
}

.hero-cine h1 em { font-style: italic; color: var(--gold); }

.hero-cine .sub {
  margin: 24px 0 0;
  max-width: 52ch;
  color: rgba(255, 253, 249, .78);
  font-size: 1.02rem;
}

.hero-cine .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.btn.light { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn.light:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.btn.outline-light { background: transparent; color: var(--white); border-color: rgba(255, 253, 249, .45); }
.btn.outline-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.hero-cine .side {
  border-left: 1px solid rgba(255, 253, 249, .28);
  padding-left: clamp(18px, 2vw, 30px);
}

.hero-cine .side .tag-line {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.hero-cine .side p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255, 253, 249, .75);
}

.hero-cine .side a { color: var(--gold); }
.hero-cine .side a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* açılışta satır satır beliren içerik */
.rise {
  opacity: 0;
  transform: translateY(26px);
  animation: rise .9s var(--ease) forwards;
}

.rise.d1 { animation-delay: .12s; }
.rise.d2 { animation-delay: .26s; }
.rise.d3 { animation-delay: .4s; }
.rise.d4 { animation-delay: .54s; }

@keyframes rise { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .rise { opacity: 1; transform: none; animation: none; }
  .hero-cine .bg img { animation: none; }
}

@media (max-width: 900px) {
  .hero-cine .inner { grid-template-columns: 1fr; }
  .hero-cine .side { border-left: 0; border-top: 1px solid rgba(255, 253, 249, .28); padding: 18px 0 0; }
}

/* ---------- ortalanmış hero + cam arama çubuğu ---------- */

.hero-cine.center .inner {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  align-items: center;
  padding: clamp(140px, 20vh, 220px) 0 clamp(64px, 10vh, 110px);
}

.hero-cine.center .eyebrow { justify-content: center; }
.hero-cine.center .eyebrow::after { content: ""; width: 34px; height: 1px; background: var(--gold); }

.hero-cine.center h1 {
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  max-width: 18ch;
}

.hero-cine.center .sub { margin-inline: auto; }

.glass {
  margin-top: clamp(32px, 5vh, 48px);
  width: min(820px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .13);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: 0 30px 70px -24px rgba(10, 12, 18, .55);
}

.glass select {
  appearance: none;
  width: 100%;
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  background: rgba(255, 255, 255, .94) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23A4854F' fill='none'/%3E%3C/svg%3E") no-repeat right 14px center;
  border: 0;
  border-radius: 9px;
  padding: 15px 38px 15px 16px;
  cursor: pointer;
}

.glass select:focus { outline: 2px solid var(--gold); outline-offset: -2px; }

.glass .btn { border-radius: 9px; padding: 15px 26px; background: var(--gold-deep); border-color: var(--gold-deep); }
.glass .btn:hover { background: var(--gold); border-color: var(--gold); }

@media (max-width: 760px) {
  .glass { grid-template-columns: 1fr 1fr; }
  .glass .btn { grid-column: 1 / -1; justify-content: center; }
}

/* ---------- masonry vitrin ---------- */

.masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 190px;
  grid-auto-flow: dense;
  gap: 22px;
}

.m-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 48px -26px rgba(32, 36, 46, .4);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.m-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 64px -26px rgba(32, 36, 46, .5);
}

.m-card.tall { grid-row: span 3; }
.m-card.mid  { grid-row: span 2; }

.m-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}

.m-card:hover img { transform: scale(1.06); }

.m-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 21, 29, .82) 0%, rgba(18, 21, 29, .12) 52%, transparent 75%);
}

.m-card .info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 20px 22px;
  color: var(--white);
}

.m-card .info .k {
  display: block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.m-card .info .n {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.15;
}

.m-card .info .c {
  display: block;
  margin-top: 6px;
  font-size: .74rem;
  color: rgba(255, 255, 255, .72);
}

@media (max-width: 900px) {
  .masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
}

@media (max-width: 560px) {
  .masonry { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .m-card.tall { grid-row: span 1; }
  .m-card.mid { grid-row: span 1; }
}

/* ---------- konsept ikonları ---------- */

.concepts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.concept {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: clamp(28px, 4vw, 44px) 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}

.concept:hover {
  transform: translateY(-5px);
  border-color: var(--champagne);
  box-shadow: 0 26px 48px -28px rgba(32, 36, 46, .3);
}

.concept svg {
  width: 44px;
  height: 44px;
  stroke: var(--gold-deep);
  stroke-width: 1.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.concept .t {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
}

.concept .s {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

@media (max-width: 760px) {
  .concepts { grid-template-columns: 1fr 1fr; }
}

/* ---------- hero: dev tipografi + kesik altyazılı görsel ---------- */

.hero-ed { padding: clamp(44px, 6vw, 80px) 0 0; }

.hero-ed .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: clamp(24px, 4vw, 64px);
}

.hero-ed h1 {
  font-size: clamp(3rem, 8vw, 6.6rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.025em;
  max-width: 13ch;
}

.hero-ed h1 em { font-style: italic; color: var(--gold-deep); }

.hero-ed .aside { max-width: 38ch; padding-bottom: 10px; flex-shrink: 0; }

.hero-ed .aside p { margin: 0 0 22px; color: var(--ink-2); font-size: .98rem; }

.hero-ed .aside .links { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }

.hero-ed .strip { position: relative; margin-top: clamp(36px, 5vw, 60px); }

.hero-ed .strip > img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.hero-ed .cap {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--bg);
  padding: 20px 32px 0 0;
  max-width: 440px;
}

.hero-ed .cap p {
  margin: 0;
  font-size: .82rem;
  color: var(--ink-2);
  line-height: 1.6;
}

.hero-ed .cap .who {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}

.hero-ed .vert {
  position: absolute;
  right: 0;
  top: -14px;
  transform: translateY(-100%);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ---------- kayan bölge şeridi ---------- */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 16px 0;
  background: var(--bg);
}

.marquee .track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: mq 36s linear infinite;
}

.marquee span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--ink-2);
  white-space: nowrap;
}

.marquee i {
  font-style: normal;
  color: var(--gold);
  font-size: .9rem;
  align-self: center;
}

@keyframes mq { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) { .marquee .track { animation: none; } }

/* ---------- dönüşümlü mekân vitrinleri ---------- */

.fr {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: clamp(44px, 6vw, 76px) 0;
  border-top: 1px solid var(--line);
}

.fr:first-of-type { border-top: 0; }

.fr.flip .fr-media { order: 2; }

.fr-media { position: relative; }

.fr-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.fr-media::after {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid var(--gold);
  opacity: .6;
}

.fr.flip .fr-media::after { inset: 20px 20px -20px -20px; }

.fr .no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-deep);
  margin-bottom: 14px;
}

.fr h3 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 16px;
}

.fr .specs {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
}

.fr .specs b { color: var(--gold-deep); font-weight: 700; }

.fr p.desc { color: var(--ink-2); margin: 0 0 26px; max-width: 46ch; }

/* ---------- manifesto ---------- */

.manifesto .big {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  line-height: 1.3;
  max-width: 34ch;
  margin: 0;
}

.manifesto .big em { font-style: italic; color: var(--gold-deep); }

.manifesto .cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(40px, 6vw, 64px);
}

.manifesto .col { border-top: 1px solid var(--gold); padding-top: 20px; }

.manifesto .col h4 {
  margin: 0 0 10px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.manifesto .col p { margin: 0; font-size: .9rem; color: var(--ink-2); }

/* ---------- salon indeksi (numaralı liste) ---------- */

.index-list { border-top: 1px solid var(--ink); }

.index-row {
  display: grid;
  grid-template-columns: 64px 1.05fr .95fr 150px;
  gap: clamp(16px, 3vw, 36px);
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
}

.index-row:hover { background: var(--bg-soft); }

.index-row .no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold);
}

.index-row h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 500;
  line-height: 1.1;
}

.index-row h3 a { transition: color .25s; }
.index-row h3 a:hover { color: var(--gold-deep); }

.index-row .imeta {
  margin-top: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.index-row .imeta b { color: var(--gold-deep); font-weight: 700; }

.index-row .desc {
  font-size: .88rem;
  color: var(--ink-2);
  margin: 0;
}

.index-row .ph {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.index-row .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.index-row:hover .ph img { transform: scale(1.06); }

/* ---------- blog: editoryal satırlar ---------- */

.post-row {
  display: grid;
  grid-template-columns: 150px 1fr 190px;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  padding: clamp(26px, 4vw, 38px) 0;
  border-bottom: 1px solid var(--line);
}

.post-row:first-of-type { border-top: 1px solid var(--ink); }

.post-row .pdate {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1.9;
}

.post-row .pdate b { display: block; color: var(--gold-deep); }

.post-row h3 {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
}

.post-row h3 a { transition: color .25s; }
.post-row h3 a:hover { color: var(--gold-deep); }

.post-row p { margin: 10px 0 0; font-size: .9rem; color: var(--ink-2); max-width: 64ch; }

.post-row .ph {
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.post-row .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.post-row:hover .ph img { transform: scale(1.06); }

/* ---------- bölünmüş CTA ---------- */

.cta2 { background: var(--bg-dark); color: var(--white); }

.cta2 .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  padding: clamp(52px, 8vw, 90px) 0;
}

.cta2 h2 {
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  max-width: 22ch;
}

.cta2 h2 em { font-style: italic; color: var(--gold); }

.cta2 .btn { background: var(--gold-deep); border-color: var(--gold-deep); flex-shrink: 0; }
.cta2 .btn:hover { background: var(--gold); border-color: var(--gold); }

/* ---------- v2 responsive ---------- */

@media (max-width: 900px) {
  .hero-ed .top { flex-direction: column; align-items: flex-start; }
  .hero-ed .strip > img { aspect-ratio: 16 / 10; }
  .fr, .fr.flip { grid-template-columns: 1fr; gap: 36px; }
  .fr.flip .fr-media { order: 0; }
  .manifesto .cols { grid-template-columns: 1fr; }
  .index-row { grid-template-columns: 1fr 120px; }
  .index-row .no { display: none; }
  .index-row .desc { display: none; }
  .post-row { grid-template-columns: 1fr 130px; }
  .post-row .pdate { display: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 1000px) {
  .salon-grid, .post-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step + .step { border-left: 0; border-top: 1px solid var(--line); }
  .detail-grid { grid-template-columns: 1fr; }
  .spec-card { position: static; }
  .site-foot .cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; padding: 0 0 44px 36px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats .stat:nth-child(3) { border-left: 0; }
  .hero-stats .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .sec-head { flex-direction: column; align-items: flex-start; }

  .nav-btn { display: block; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 10px 24px 18px;
    display: none;
  }

  .site-nav.open { display: flex; }

  .site-nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav a.on { border-color: var(--line); color: var(--gold-deep); }

  .detail-hero { grid-template-columns: 1fr; }
  .detail-hero .side { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .salon-grid, .post-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .site-foot .cols { grid-template-columns: 1fr; gap: 36px; }
  .filterbar .count { width: 100%; margin: 4px 0 0; }
}

/* ---------- Marcellus düzeltmeleri ----------
   Marcellus tek ağırlıklıdır (400) ve italik kesimi yoktur:
   sahte kalınlaştırma/eğikleştirme olmasın diye tüm serif
   başlıklar 400 ağırlığa ve düz kesime sabitlenir. */

h1, h2, h3, .serif, .brand .mark, .stat .num,
.hero-cine h1, .hero-ed h1, .fr h3, .manifesto .big,
.index-row h3, .post-row h3, .cta h2, .cta2 h2, .m-card .info .n {
  font-weight: 400;
  letter-spacing: 0;
}

em.tint, .hero-cine h1 em, .manifesto .big em, .cta2 h2 em,
.article blockquote, .marquee span, .lost .big,
.fr .no, .index-row .no, .step .no {
  font-style: normal;
}
