/* Edwin Misisyan — Pırlanta Koleksiyonu */

:root {
  --ink: #1D1C1A;
  --ink-hover: #3A3835;
  --muted: #6F6A63;
  --text2: #4A4743;
  --rule: #E2DED8;
  --rule-soft: #D9D4CD;
  --input: #CFCAC3;
  --soft: #F6F4F1;
  --hdr-border: #EDEAE5;
  --err: #8A3B2E;

  --serif: 'Gilda Display', Didot, 'Bodoni 72', Georgia, serif;
  --sans: 'Tenor Sans', Optima, 'Gill Sans', sans-serif;

  --hdr-h: 72px;
  --gutter: clamp(16px, 4vw, 56px);
  --max: 1240px;
}

@media (max-width: 899px) {
  :root { --hdr-h: 60px; --gutter: 16px; }
}

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

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

body {
  margin: 0;
  background: #FFFFFF;
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;
}
html { overflow-x: hidden; overflow-x: clip; }
body.locked { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: var(--ink); text-decoration: none; transition: color .2s; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 1px solid var(--ink); outline-offset: 3px; }
[hidden] { display: none !important; }

@keyframes emFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes emRise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.skip {
  position: absolute; left: 8px; top: -60px; z-index: 100;
  padding: 10px 14px; background: var(--ink); color: #fff; font-size: 11px; letter-spacing: .2em;
}
.skip:focus { top: 8px; color: #fff; }

/* ---------- Ortak ---------- */
.eyebrow {
  font-size: 11px; letter-spacing: .5em; padding-left: .5em; color: var(--muted);
}
.eyebrow--left { padding-left: 0; }

.h2 {
  margin: 18px 0 0;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px, 3.6vw, 52px); line-height: 1.1;
  letter-spacing: .18em; padding-left: .18em;
}

.lbl { font-size: 10px; letter-spacing: .28em; }
.val { font-family: var(--serif); font-variant-numeric: lining-nums; }

.btn {
  height: 50px; padding: 0 30px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 11px; letter-spacing: .26em;
  border: 1px solid var(--ink); border-radius: 0; cursor: pointer;
  white-space: nowrap;
  transition: background .25s, color .25s;
}
.btn--fill { background: var(--ink); color: #fff; }
.btn--fill:hover { background: var(--ink-hover); border-color: var(--ink-hover); color: #fff; }
.btn--outline { background: transparent; color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--sm { height: 40px; padding: 0 clamp(14px, 1.6vw, 22px); font-size: 10.5px; }
.btn--pad { padding: 0 34px; }
.btn--block { width: 100%; height: 52px; }

.link-caps { padding: 12px 0; font-size: 11px; letter-spacing: .26em; }
.link-caps:hover { color: var(--muted); }

/* ---------- Header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hdr-border);
}
.hdr__in {
  height: var(--hdr-h); padding: 0 var(--gutter);
  display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center; gap: 16px;
}
.hdr__nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); font-size: 11px; letter-spacing: .26em; }
.hdr__nav a { padding: 12px 0; white-space: nowrap; }
.hdr__nav a:hover { color: var(--muted); }
.hdr__burger-wrap { display: none; }
.hdr__burger {
  height: 44px; padding: 0; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 11px; letter-spacing: .26em;
}
.burger { display: flex; flex-direction: column; gap: 5px; }
.burger span { display: block; width: 20px; height: 1px; background: var(--ink); }
.hdr__logo { display: block; padding: 10px 0; }
.hdr__logo img { height: clamp(12px, 1.3vw, 16px); width: auto; }
.hdr__right { display: flex; justify-content: flex-end; }
.hdr__cta { gap: 8px; }

@media (max-width: 899px) {
  .hdr__nav { display: none; }
  .hdr__burger-wrap { display: flex; }
  .hdr__logo img { height: 12px; }
  .hdr__right .btn--sm { padding: 0 14px; }
}

/* ---------- Mobil menü ---------- */
.menu {
  position: fixed; inset: 0; z-index: 60; background: #fff;
  display: flex; flex-direction: column;
  padding: 0 var(--gutter) env(safe-area-inset-bottom);
  animation: emFade .25s ease;
  overflow-y: auto;
}
.menu__top { height: var(--hdr-h); flex: none; display: flex; align-items: center; justify-content: space-between; }
.menu__top img { height: 12px; width: auto; }
.menu__close {
  height: 44px; padding: 0 4px; background: none; border: 0; cursor: pointer;
  font-family: var(--sans); font-size: 11px; letter-spacing: .26em;
}
.menu__nav { margin-top: 6vh; display: flex; flex-direction: column; border-top: 1px solid var(--rule); }
.menu__nav a {
  padding: 22px 0; border-bottom: 1px solid var(--rule);
  font-family: var(--serif); font-size: 26px; letter-spacing: .14em;
}
.menu__foot { margin-top: auto; padding: 32px 0; display: flex; flex-direction: column; gap: 14px; font-size: 11px; letter-spacing: .22em; }
.menu__foot a { padding: 4px 0; }

/* ---------- Hero ---------- */
.hero {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: calc(100vh - var(--hdr-h));
  min-height: calc(100svh - var(--hdr-h));
}
.hero__text {
  display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
  padding: clamp(56px, 8vw, 120px) clamp(24px, 5vw, 80px);
  animation: emRise .9s ease both;
}
.hero__title {
  margin: 0; padding-left: .22em;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(44px, 6.4vw, 96px); line-height: 1; letter-spacing: .22em;
}
.hero__sub {
  margin-top: clamp(16px, 1.8vw, 26px); padding-left: .6em;
  font-size: clamp(10px, .95vw, 13px); line-height: 1; letter-spacing: .6em;
}
.hero__btns { margin-top: clamp(40px, 5vw, 64px); display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.hero__media { position: relative; min-height: min(88vh, 900px); overflow: hidden; animation: emFade 1.2s ease both; }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }

@media (max-width: 899px) {
  .hero { display: flex; flex-direction: column; min-height: 0; }
  .hero__media { order: -1; width: 100%; min-height: 0; aspect-ratio: 4 / 5; }
  .hero__media img { object-position: 50% 40%; }
  .hero__media::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 90px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
  }
  .hero__text { padding: 8px 24px 64px; }
  .hero__title { font-size: clamp(28px, 11vw, 42px); }
  .hero__sub { margin-top: 16px; font-size: 10px; }
  .hero__btns { margin-top: 36px; width: 100%; max-width: 420px; flex-direction: column; gap: 10px; }
  .hero__btns .btn { height: 52px; width: 100%; padding: 0 16px; }
}

/* ---------- Bölümler ---------- */
.sec { scroll-margin-top: var(--hdr-h); }
.band { scroll-margin-top: var(--hdr-h); }
.sec__head { display: flex; flex-direction: column; align-items: center; text-align: center; }

/* ---------- Koleksiyon ---------- */
.koleksiyon { padding: clamp(72px, 10vw, 150px) var(--gutter) clamp(56px, 8vw, 120px); }

.tabs {
  margin: clamp(36px, 4vw, 56px) auto 0; max-width: var(--max);
  display: flex; justify-content: safe center; gap: clamp(18px, 2.6vw, 40px);
  overflow-x: auto; border-bottom: 1px solid var(--rule);
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  position: relative; flex: none; height: 48px; padding: 0;
  background: none; border: 0; cursor: pointer;
  font-family: var(--sans); font-size: 10.5px; letter-spacing: .24em; white-space: nowrap;
  transition: color .2s;
}
.tab:hover { color: var(--muted); }
.tab[aria-selected="true"]::after {
  content: ''; position: absolute; left: 0; right: .24em; bottom: 0; height: 1px; background: var(--ink);
}

.grid {
  margin: clamp(36px, 4vw, 56px) auto 0; max-width: var(--max);
  display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr));
  gap: clamp(28px, 3vw, 44px) clamp(16px, 2vw, 28px);
}
.card {
  display: flex; flex-direction: column; gap: 18px;
  padding: 0; background: none; border: 0; text-align: center; cursor: pointer;
  animation: emRise .6s ease both;
}
.card__tile { position: relative; width: 100%; aspect-ratio: 1 / 1; background: var(--soft); overflow: hidden; }
.card__hero {
  position: absolute; inset: 0; width: 100%; height: 100%; padding: 7%;
  object-fit: contain; mix-blend-mode: multiply;
}
.card__alt {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .45s ease;
}
@media (hover: hover) {
  .card:hover .card__alt, .card:focus-visible .card__alt { opacity: 1; }
}
.card__meta { display: flex; flex-direction: column; align-items: center; gap: 9px; }
.card__cat { font-size: 9.5px; letter-spacing: .28em; color: var(--muted); }
.card__name { font-family: var(--serif); font-size: 19px; line-height: 1.2; letter-spacing: .08em; }
.card__sub { font-family: var(--serif); font-size: 14px; letter-spacing: .04em; color: var(--text2); font-variant-numeric: lining-nums; }

@media (max-width: 899px) {
  .koleksiyon { padding: 72px var(--gutter) 56px; }
  .tabs { margin-top: 36px; justify-content: flex-start; gap: 22px; padding: 0 2px; }
  .grid { margin-top: 36px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 12px; }
  .h2 { font-size: 30px; }
  .card__cat { font-size: 8.5px; line-height: 1.5; letter-spacing: .22em; }
  .card__name { font-size: 16px; line-height: 1.25; letter-spacing: .06em; }
  .card__sub { font-size: 12.5px; letter-spacing: .02em; white-space: nowrap; }
}
@media (min-width: 600px) and (max-width: 899px) {
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ---------- İki kolonlu bantlar ---------- */
.band { background: var(--soft); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.band__media { position: relative; min-height: min(80vh, 760px); }
.band__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.band__body { display: flex; flex-direction: column; justify-content: center; padding: clamp(56px, 7vw, 110px) clamp(24px, 5vw, 80px); }

.ozel__body { align-items: center; text-align: center; }
.h2--ozel { font-size: clamp(30px, 3.4vw, 48px); letter-spacing: .16em; padding-left: .16em; }
.spec2 { margin-top: clamp(28px, 3vw, 44px); width: min(360px, 100%); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.spec2 > div { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.spec2 > div + div { border-left: 1px solid var(--rule-soft); }
.spec2 .lbl { letter-spacing: .3em; padding-left: .3em; }
.spec2 .val { font-size: 20px; letter-spacing: .14em; padding-left: .14em; }
.ozel__prod { margin-top: clamp(28px, 3vw, 44px); width: min(380px, 90%); height: auto; mix-blend-mode: multiply; }
.ozel .btn { margin-top: clamp(24px, 3vw, 40px); }

@media (max-width: 899px) {
  .band { grid-template-columns: 1fr; }
  .band__media { width: 100%; min-height: 0; aspect-ratio: 4 / 5; }
  .band__body { padding: 56px 24px; }
  .h2--ozel { font-size: 30px; }
  .spec2, .ozel__prod { margin-top: 28px; }
  .ozel .btn { margin-top: 24px; }
}

/* ---------- Stil ---------- */
.stil { padding: clamp(72px, 9vw, 130px) var(--gutter); }
.stil__head {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 16px;
}
.h2--stil { margin: 0; padding-left: 0; font-size: clamp(24px, 2.4vw, 34px); letter-spacing: .16em; }
.stil__grid {
  max-width: var(--max); margin: clamp(24px, 3vw, 40px) auto 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(46%, 180px), 1fr));
  gap: clamp(6px, .8vw, 12px);
}
.stil__grid a { display: block; overflow: hidden; aspect-ratio: 4 / 5; background: var(--soft); }
.stil__grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease, opacity .4s; }
@media (hover: hover) {
  .stil__grid a:hover img { transform: scale(1.04); opacity: .92; }
}
@media (max-width: 899px) {
  .stil { padding: 72px var(--gutter); }
  .h2--stil { font-size: 24px; }
  .stil__grid { margin-top: 24px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
}
@media (min-width: 600px) and (max-width: 899px) {
  .stil__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ---------- Randevu ---------- */
.randevu { border-top: 1px solid var(--rule); padding: clamp(72px, 9vw, 130px) var(--gutter); }
.randevu__in {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 6vw, 96px); align-items: center;
}
.randevu__img { width: 100%; height: auto; }
.h2--randevu { font-size: clamp(28px, 3vw, 42px); line-height: 1.2; letter-spacing: .12em; padding-left: 0; }
.lead {
  margin: 18px 0 0; max-width: 440px;
  font-family: var(--serif); font-size: 17px; line-height: 1.6; color: var(--text2); text-wrap: pretty;
}

.form { margin-top: 36px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 26px 28px; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field--full, .form__foot { grid-column: 1 / -1; }
.field input, .field select, .field textarea {
  width: 100%; min-width: 0; padding: 10px 0; margin: 0;
  border: 0; border-bottom: 1px solid var(--input); border-radius: 0;
  background: transparent; outline: none;
  font-family: var(--serif); font-size: 17px; color: var(--ink);
  transition: border-color .2s;
  -webkit-appearance: none; appearance: none;
}
.field input[type="date"] { min-height: 45px; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--ink); }
.field textarea { resize: vertical; line-height: 1.5; }
.field select { cursor: pointer; padding-right: 22px; }
.field--select { position: relative; }
.field--select::after {
  content: ''; position: absolute; right: 4px; bottom: 20px;
  width: 7px; height: 7px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
  transform: rotate(45deg); pointer-events: none;
}
.field.is-invalid input { border-bottom-color: var(--err); }

.form__foot { margin-top: 8px; display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.form__foot .btn { height: 52px; }
.form__msg--err { font-size: 12px; letter-spacing: .06em; color: var(--err); }
.form__msg--ok { font-family: var(--serif); font-size: 15px; color: var(--text2); }

@media (max-width: 899px) {
  .randevu { padding: 72px var(--gutter); }
  .randevu__in { grid-template-columns: 1fr; gap: 40px; }
  .h2--randevu { font-size: 28px; }
  .form__foot .btn { width: 100%; padding: 0 16px; }
}

/* ---------- Mağaza ---------- */
.addr {
  margin-top: 22px; font-style: normal;
  font-family: var(--serif); font-size: clamp(20px, 1.8vw, 24px); line-height: 1.6; letter-spacing: .02em;
  font-variant-numeric: lining-nums;
}
.rows { margin-top: 32px; display: flex; flex-direction: column; border-top: 1px solid var(--rule-soft); max-width: 440px; }
.rows a {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  min-height: 56px; border-bottom: 1px solid var(--rule-soft);
}
.rows a:hover { color: var(--muted); }
.rows .val { font-size: 17px; letter-spacing: .04em; }
.magaza__map { position: relative; min-height: 420px; }
.magaza__map iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  filter: grayscale(1) contrast(1.05) brightness(1.02);
}
@media (max-width: 899px) {
  .addr { font-size: 20px; }
  .magaza__map { min-height: 320px; height: 320px; }
}

/* ---------- Footer ---------- */
.ftr {
  padding: clamp(48px, 6vw, 80px) var(--gutter) 36px;
  display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center;
}
.ftr > img { width: clamp(150px, 16vw, 200px); height: auto; }
.ftr nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px clamp(18px, 3vw, 36px); font-size: 10.5px; letter-spacing: .26em; }
.ftr nav a { padding: 8px 0; }
.ftr nav a:hover { color: var(--muted); }
.ftr__copy { font-size: 10px; letter-spacing: .2em; color: var(--muted); }

/* ---------- Mobil alt çubuk ---------- */
.bar { display: none; }
@media (max-width: 899px) {
  .bar {
    position: sticky; bottom: 0; z-index: 25;
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
    background: rgba(255, 255, 255, .96);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    border-top: 1px solid var(--rule);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .bar a { height: 56px; display: flex; align-items: center; justify-content: center; font-size: 10.5px; letter-spacing: .24em; }
  .bar a + a { border-left: 1px solid var(--rule); }
  .bar .bar__cta { background: var(--ink); color: #fff; border-left-color: var(--ink); }
}

/* ---------- Ürün detay ---------- */
.modal {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(29, 28, 26, .42);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(0px, 2vw, 24px);
  animation: emFade .25s ease;
}
.modal__panel {
  position: relative; width: min(1120px, 100%); max-height: 100%; overflow: auto;
  background: #fff;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  animation: emRise .35s ease;
  overscroll-behavior: contain;
}
.modal__close {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 44px; height: 44px; border: 0; background: rgba(255, 255, 255, .9); cursor: pointer;
  font-family: var(--serif); font-size: 26px; line-height: 1;
}

.gal { display: flex; flex-direction: column; gap: 10px; padding: clamp(0px, 1.4vw, 18px); }
.gal__main { position: relative; aspect-ratio: 4 / 5; max-height: 78vh; background: var(--soft); overflow: hidden; touch-action: pan-y; }
.gal__main img { position: absolute; inset: 0; width: 100%; height: 100%; animation: emFade .35s ease; }
.gal__main img.is-hero { padding: 6%; object-fit: contain; mix-blend-mode: multiply; }
.gal__main img.is-style { object-fit: cover; }
.gal__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 1;
  width: 44px; height: 44px; border: 0; border-radius: 50%;
  background: rgba(255, 255, 255, .86); cursor: pointer;
  font-family: var(--serif); font-size: 22px; line-height: 1;
}
.gal__arrow--prev { left: 10px; }
.gal__arrow--next { right: 10px; }
.gal__thumbs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.gal__thumbs button {
  position: relative; aspect-ratio: 1 / 1; padding: 0; border: 0;
  background: var(--soft); cursor: pointer; overflow: hidden;
}
.gal__thumbs img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; }
.gal__thumbs button[aria-current="true"]::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--ink);
}

.info { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 4vw, 64px); }
.info__cat { font-size: 10px; letter-spacing: .3em; color: var(--muted); }
.info__name {
  margin: 14px 0 0; font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 2.8vw, 40px); line-height: 1.15; letter-spacing: .12em;
}
.info__rows { margin-top: 32px; display: flex; flex-direction: column; border-top: 1px solid var(--rule); }
.info__rows > div {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 17px 0; border-bottom: 1px solid var(--rule);
}
.info__rows .lbl { letter-spacing: .3em; }
.info__rows .val { font-size: 19px; letter-spacing: .04em; white-space: nowrap; }
.info__btns { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }

@media (max-width: 899px) {
  .modal { padding: 0; background: #fff; }
  .modal__panel { width: 100%; height: 100%; max-height: none; grid-template-columns: minmax(0, 1fr); align-content: start; }
  .gal { padding: 0; }
  .gal__main { max-height: none; }
  .gal__thumbs { padding: 0 12px 12px; }
  .info { justify-content: flex-start; padding: 28px 28px calc(28px + env(safe-area-inset-bottom)); }
  .info__name { font-size: clamp(22px, 7.5vw, 28px); letter-spacing: .1em; }
}
@media (min-width: 600px) and (max-width: 899px) {
  .gal__main { aspect-ratio: auto; height: min(70vh, 125vw); }
}

/* ---------- Dar ekranlar (iPhone SE / büyütülmüş Safari) ---------- */
@media (max-width: 899px) {
  .hdr__in { gap: 10px; }
  .h2 { font-size: clamp(24px, 8vw, 30px); }
  .h2--ozel { font-size: clamp(24px, 8vw, 30px); }
  .h2--randevu { font-size: clamp(22px, 7.4vw, 28px); }
  .spec2 .val { font-size: clamp(15px, 5vw, 20px); letter-spacing: .1em; padding-left: .1em; }
  .info__rows > div { flex-wrap: wrap; gap: 6px 16px; }
  .info__rows .val { font-size: clamp(16px, 5vw, 19px); margin-left: auto; }
  .rows a { flex-wrap: wrap; gap: 4px 16px; padding: 10px 0; }
  .rows .val { margin-left: auto; }
  .menu__nav a { font-size: clamp(20px, 7vw, 26px); }
  .gal__main { width: 100%; }
}
@media (max-width: 400px) {
  .bar a { font-size: 9.5px; letter-spacing: .16em; }
  .tabs { gap: 18px; }
}
@media (max-width: 340px) {
  .grid { gap: 24px 10px; }
  .card__sub { font-size: 11.5px; white-space: normal; }
  .card__cat { letter-spacing: .16em; }
  .band__body, .info { padding-left: 20px; padding-right: 20px; }
}

/* ---------- Tam ekran butonu ---------- */
.gal__main img { cursor: zoom-in; }
.gal__full {
  position: absolute; right: 10px; bottom: 10px; z-index: 1;
  height: 36px; padding: 0 12px; display: flex; align-items: center; gap: 8px;
  border: 0; background: rgba(255, 255, 255, .9); cursor: pointer;
  font-family: var(--sans); font-size: 9.5px; letter-spacing: .2em; color: var(--ink);
}

/* ---------- Tam ekran görüntüleyici ---------- */
.lb {
  position: fixed; inset: 0; z-index: 80; background: #fff;
  animation: emFade .25s ease;
  -webkit-user-select: none; user-select: none;
}
.lb__stage {
  position: absolute; inset: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  touch-action: none; cursor: zoom-in;
}
.lb.is-zoomed .lb__stage { cursor: grab; }
.lb__stage img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  transform-origin: 50% 50%; will-change: transform;
  -webkit-user-drag: none; pointer-events: none;
}
.lb__stage img.is-hero { max-width: 92%; max-height: 80%; mix-blend-mode: multiply; }
.lb.is-anim .lb__stage img { transition: transform .25s ease; }
.lb__top {
  position: absolute; left: 0; right: 0; top: 0;
  padding: calc(8px + env(safe-area-inset-top)) 8px 8px 16px;
  display: flex; align-items: center; justify-content: space-between; pointer-events: none;
}
.lb__top > * { pointer-events: auto; }
.lb__count { font-size: 10px; letter-spacing: .3em; color: var(--muted); font-variant-numeric: lining-nums; }
.lb__close {
  width: 48px; height: 48px; border: 0; background: rgba(255, 255, 255, .9); cursor: pointer;
  font-family: var(--serif); font-size: 30px; line-height: 1; color: var(--ink);
}
.lb__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border: 0; border-radius: 50%;
  background: rgba(246, 244, 241, .9); cursor: pointer;
  font-family: var(--serif); font-size: 24px; line-height: 1; color: var(--ink);
}
.lb__arrow--prev { left: 12px; }
.lb__arrow--next { right: 12px; }
.lb.is-zoomed .lb__arrow { opacity: 0; pointer-events: none; }
.lb__hint {
  position: absolute; left: 50%; bottom: calc(20px + env(safe-area-inset-bottom)); transform: translateX(-50%);
  padding: 10px 14px; background: rgba(29, 28, 26, .8); color: #fff;
  font-size: 10px; letter-spacing: .12em; white-space: nowrap;
  transition: opacity .6s; pointer-events: none;
}
.lb__hint.is-gone { opacity: 0; }
@media (hover: hover) and (pointer: fine) {
  .lb__hint { display: none; }
}
@media (max-width: 899px) {
  .lb__arrow { width: 40px; height: 40px; font-size: 20px; }
  .lb__arrow--prev { left: 6px; }
  .lb__arrow--next { right: 6px; }
}

/* ---------- Üst bar randevu: mobilde ikon ---------- */
.hdr__cta-icon { display: none; }
@media (max-width: 899px) {
  .hdr__right .hdr__cta { width: 44px; height: 44px; padding: 0; border: 0; background: none; color: var(--ink); justify-content: flex-end; }
  .hdr__right .hdr__cta:hover { background: none; color: var(--muted); }
  .hdr__cta-icon { width: 20px; height: 20px; }
  .hdr__cta-icon { display: block; }
  .hdr__cta-text { display: none; }
  .hdr__logo { justify-self: center; }
  .hdr__logo img { height: clamp(10px, 3.6vw, 13px); }
}
@media (max-width: 359px) {
  .hdr__burger { font-size: 0; gap: 0; width: 44px; }
}

/* ---------- Mobil üst bar: logo solda, menü ikonu sağda ---------- */
@media (max-width: 899px) {
  .hdr__in { display: flex; justify-content: space-between; gap: 16px; }
  .hdr__logo { order: 1; justify-self: auto; }
  .hdr__burger-wrap { order: 2; }
  .hdr__right { display: none; }
  .hdr__burger { font-size: 0; gap: 0; width: 44px; justify-content: flex-end; }
  .hdr__logo img { height: clamp(11px, 3.6vw, 13px); }
}
