/* Şivekar — light tema | Orjin yapısı | terracotta marka */

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Heavy.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand: #9C3B29;
  --brand-dark: #7A2E20;
  --brand-soft: #B85A4A;
  --brand-tint: #f8efed;
  --btn: #9C3B29;
  --btn-hover: #7A2E20;
  --ink: #1c1715;
  --text: #2a2421;
  --muted: #6f6661;
  --line: #e8e2de;
  --white: #ffffff;
  --bg: #f7f5f3;
  --warm: #f3eeea;
  --footer: #000000;
  --radius: 0px;
  --section-y: 80px;
  --section-y-sm: 64px;
  --shadow: 0 24px 60px rgba(0, 0, 0, .08);
  --shadow-sm: 0 12px 28px rgba(0, 0, 0, .06);
  --font: "Gilroy", system-ui, sans-serif;
  --display: "Gilroy", system-ui, sans-serif;
  --header-h: 88px;
  --maxw: 1400px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

.container {
  width: min(var(--maxw), calc(100% - 40px));
  margin: 0 auto;
}
@media (max-width: 560px) {
  .container { width: min(var(--maxw), calc(100% - 32px)); }
}

h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.15;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -.01em;
  text-transform: capitalize;
}

.section { padding: var(--section-y) 0; }
.section--white { background: var(--white); }
.section--warm { background: var(--warm); }
.section--bg { background: var(--bg); }

@media (max-width: 900px) {
  :root { --section-y: var(--section-y-sm); }
}

.section-head {
  max-width: 640px;
  margin: 0 0 36px;
  text-align: left;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
}
.section-head p {
  color: var(--muted);
  margin-top: 12px;
  font-weight: 400;
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 500;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .35s var(--ease);
  background: none;
  line-height: 1;
  text-align: center;
}
.btn--sm {
  padding: 0 16px;
  height: 32px;
  font-size: .66rem;
}
.btn--block { width: 100%; }
.btn--brand { background: var(--btn); color: #fff; border-color: var(--btn); }
.btn--brand:hover { background: transparent; color: var(--btn); }
.btn--ink { background: #111; color: #fff; border-color: #111; }
.btn--ink:hover { background: transparent; color: #111; }
.btn--outline { background: transparent; color: var(--btn); border-color: var(--btn); }
.btn--outline:hover { background: var(--btn); color: #fff; }
.btn--light { background: #fff; color: var(--ink); border-color: #fff; }
.btn--light:hover { background: transparent; color: #fff; }

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 24px rgba(0, 0, 0, .07);
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 20px;
  transition: min-height .3s var(--ease);
}
.brand { display: inline-flex; align-items: center; z-index: 2; line-height: 0; }
.brand__img {
  height: 42px;
  width: auto;
  max-width: min(200px, 48vw);
  object-fit: contain;
  transition: height .3s var(--ease), opacity .35s, max-width .3s var(--ease);
}
@media (min-width: 980px) { .brand__img { height: 48px; } }
.header.scrolled .header__inner { min-height: 72px; }
.header.scrolled .brand__img { height: 36px; }
@media (min-width: 980px) {
  .header.scrolled .brand__img { height: 40px; }
}
.brand__img--light { display: none; }

.nav { display: none; align-items: center; gap: 28px; }
.nav a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 0;
  position: relative;
  font-family: var(--display);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1.5px; width: 0;
  background: currentColor;
  transition: width .3s;
}
.nav a:hover, .nav a.is-active { color: var(--brand); }
.nav a:hover::after, .nav a.is-active::after { width: 100%; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  min-width: 0;
}
@media (max-width: 560px) {
  .header__actions { gap: 8px; }
  .brand__img { height: 34px; max-width: min(150px, 42vw); }
  .header.scrolled .brand__img { height: 30px; }
}

.lang-dd,
.loc-dd {
  position: relative;
  display: flex;
  align-items: center;
  height: 28px;
}
.lang-dd__toggle,
.loc-dd__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  height: 28px;
  min-height: 28px;
  padding: 0;
  line-height: 1;
}
.loc-dd__toggle svg {
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: -1px;
}
.loc-dd__toggle span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  height: 14px;
}
.lang-dd__menu {
  position: absolute; top: 100%; right: 0; margin-top: 10px;
  background: #fff; box-shadow: var(--shadow); border-top: 2px solid var(--brand);
  min-width: 110px; padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: .25s var(--ease); z-index: 10;
}
.lang-dd.open .lang-dd__menu { opacity: 1; visibility: visible; transform: none; }
.lang-dd__menu a { display: block; padding: 10px 18px; font-size: .84rem; }
.lang-dd__menu a:hover, .lang-dd__menu a.active { color: var(--brand); font-weight: 700; }

.loc-dd { display: none; }
@media (min-width: 1100px) {
  .loc-dd { display: flex; }
}
.loc-dd__menu {
  position: absolute; top: 100%; right: 0; margin-top: 10px;
  background: #fff; box-shadow: var(--shadow); border-top: 2px solid var(--brand);
  min-width: 280px; padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: .25s var(--ease); z-index: 10;
}
.loc-dd.open .loc-dd__menu { opacity: 1; visibility: visible; transform: none; }
.loc-dd__menu a { display: block; padding: 12px 18px; }
.loc-dd__menu a strong { display: block; font-size: .88rem; color: var(--ink); }
.loc-dd__menu a span { display: block; font-size: .78rem; color: var(--muted); margin-top: 3px; font-weight: 400; text-transform: none; letter-spacing: 0; }
.loc-dd__menu a:hover { background: var(--bg); }
.loc-dd__menu a:hover strong { color: var(--brand); }

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; border: 0; background: transparent; cursor: pointer; padding: 0; z-index: 106;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); margin-inline: auto; transition: .3s; }

/* Overlay header on hero */
.header--overlay { background: transparent; box-shadow: none; }
.header--overlay .nav a,
.header--overlay .lang-dd__toggle,
.header--overlay .loc-dd__toggle { color: #fff; }
.header--overlay .brand__img--color { display: none; }
.header--overlay .brand__img--light { display: block; }
.header--overlay .nav-toggle span { background: #fff; }
.header--overlay:not(.scrolled) .header__actions .btn--brand {
  background: #fff; color: var(--ink); border-color: #fff;
}
.header--overlay:not(.scrolled) .header__actions .btn--brand:hover {
  background: transparent; color: #fff; border-color: #fff;
}

/* Inner pages: solid header from the start */
.header--overlay.header--inner {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 24px rgba(0,0,0,.08);
}
.header--overlay.header--inner .nav a,
.header--overlay.header--inner .lang-dd__toggle,
.header--overlay.header--inner .loc-dd__toggle { color: var(--ink); }
.header--overlay.header--inner .brand__img--color { display: block; }
.header--overlay.header--inner .brand__img--light { display: none; }
.header--overlay.header--inner .nav-toggle span { background: var(--ink); }

.reserve-fab {
  display: none;
}
.header--overlay.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 24px rgba(0, 0, 0, .08);
}
.header--overlay.scrolled .nav a,
.header--overlay.scrolled .lang-dd__toggle,
.header--overlay.scrolled .loc-dd__toggle { color: var(--ink); }
.header--overlay.scrolled .brand__img--color { display: block; }
.header--overlay.scrolled .brand__img--light { display: none; }
.header--overlay.scrolled .nav-toggle span { background: var(--ink); }

@media (min-width: 980px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
}

@media (max-width: 979px) {
  .header--overlay:not(.scrolled):not(.is-open) {
    background: transparent;
    box-shadow: none;
  }
  .header--overlay:not(.scrolled):not(.is-open) .lang-dd__toggle { color: #111; }
  .header--overlay:not(.scrolled):not(.is-open) .nav-toggle span { background: #111; }
  .nav {
    position: fixed; inset: 0 0 0 auto;
    width: min(320px, 86%);
    background: var(--white);
    flex-direction: column; align-items: flex-start;
    padding: 100px 28px 28px; gap: 4px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    z-index: 105; overflow-y: auto;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; transform: none; }
  .nav a { color: var(--ink) !important; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .header.is-open,
  .header--overlay.is-open {
    background: #fff;
    box-shadow: 0 2px 24px rgba(0, 0, 0, .08);
  }
  .header.is-open .brand__img--color,
  .header--overlay.is-open .brand__img--color { display: block; }
  .header.is-open .brand__img--light,
  .header--overlay.is-open .brand__img--light { display: none; }
  .header.is-open .nav-toggle span,
  .header--overlay.is-open .nav-toggle span { background: var(--ink); }
  .header.is-open .lang-dd__toggle,
  .header--overlay.is-open .lang-dd__toggle { color: var(--ink); }
  .header-reserve { display: none !important; }
  .reserve-fab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 95;
    transform: translateY(-50%);
    margin: 0;
    padding: 18px 11px;
    border: 0;
    background: var(--btn);
    color: #fff;
    font-family: var(--font);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    cursor: pointer;
    box-shadow: -6px 8px 24px rgba(0, 0, 0, .18);
    transition: background .25s, transform .25s var(--ease);
  }
  .reserve-fab:hover,
  .reserve-fab:focus-visible {
    background: var(--btn-hover);
    outline: none;
  }
  body.modal-open .reserve-fab,
  .header.is-open ~ .reserve-fab {
    opacity: 0;
    pointer-events: none;
  }
}

/* Hero — scroll-scrub (sticky stage + video) */
.hero {
  --hero-track: 320vh;
  position: relative;
  height: var(--hero-track);
  min-height: 0;
  background: #1a1412;
}
.hero.hero--static {
  /* svh adres çubuğu görünürkenki yükseklik; çubuk gizlenince altta boşluk
     kalıyordu. dvh görünür alanı anlık takip eder. svh, desteklemeyen
     tarayıcılar için yedek. */
  height: 100svh;
  height: 100dvh;
  min-height: 520px;
}
.hero.hero--static .hero__stage {
  position: relative;
  height: 100%;
}
.hero__stage {
  position: sticky;
  top: 0;
  height: 100svh;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
  background: #1a1412;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__media img,
.hero__media video,
.hero__video,
.hero__canvas,
.hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: none;
  min-width: 0;
  min-height: 0;
  display: block;
}
.hero__canvas {
  z-index: 1;
  opacity: 0;
  transition: opacity .35s ease;
}
.hero.is-ready .hero__canvas { opacity: 1; }
.hero.is-ready .hero__poster { opacity: 0; }
.hero__poster {
  z-index: 0;
  transition: opacity .35s ease;
}
.hero__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(12, 10, 9, .78) 0%, rgba(12, 10, 9, .28) 38%, transparent 58%),
    linear-gradient(to right, rgba(12, 10, 9, .45) 0%, transparent 48%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0 clamp(20px, 5vw, 72px) clamp(56px, 10vh, 100px);
  color: #fff;
  pointer-events: none;
}
.hero__overlay.is-in .hero__rule { width: 64px; }
.hero__overlay.is-in .hero__eyebrow {
  opacity: 1;
  transform: none;
}
.hero__overlay.is-in .hero__ln > span { transform: translateY(0); }
.hero__overlay.is-in .hero__sub,
.hero__overlay.is-in .hero__cta {
  opacity: 1;
  transform: none;
}
.hero__eyebrow {
  margin: 0 0 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.hero__rule {
  width: 0;
  height: 1px;
  background: #fff;
  opacity: .55;
  margin-bottom: 22px;
  transition: width 1.1s var(--ease);
}
.hero__title {
  font-size: clamp(2.2rem, 6.5vw, 4.6rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.02em;
  color: #fff;
  max-width: 14ch;
  margin: 0;
  text-transform: none;
}
.hero__ln {
  display: block;
  overflow: hidden;
}
.hero__ln > span {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease);
}
.hero__sub {
  margin: 22px 0 0;
  max-width: 36ch;
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, .72);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .9s var(--ease) .12s, transform .9s var(--ease) .12s;
}
.hero__cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .9s var(--ease) .22s, transform .9s var(--ease) .22s;
}
.hero__cta .btn--brand {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.hero__cta .btn--brand:hover {
  background: transparent;
  color: #fff;
}
.hero__link {
  color: #fff;
  font-size: .88rem;
  letter-spacing: .04em;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
.hero__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.hero__link:hover::after { transform: scaleX(1); }
.hero__cue {
  position: absolute;
  z-index: 4;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  transition: opacity .4s;
  pointer-events: none;
}
.hero__cue-mouse {
  width: 20px;
  height: 32px;
  border: 1.5px solid rgba(255, 255, 255, .28);
  border-radius: 12px;
  position: relative;
}
.hero__cue-mouse::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 3px;
  height: 6px;
  border-radius: 2px;
  background: #fff;
  transform: translateX(-50%);
  animation: heroWheel 1.6s var(--ease) infinite;
}
@keyframes heroWheel {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  70% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 10px); }
}
.hero__progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  z-index: 4;
  pointer-events: none;
}
.hero__progress i {
  display: block;
  height: 100%;
  width: 0%;
  background: #fff;
  opacity: .85;
}
@media (max-width: 900px) {
  .hero { --hero-track: 260vh; }
  .hero__overlay {
    padding-bottom: clamp(64px, 12vh, 96px);
  }
}
@media (max-width: 560px) {
  .hero { --hero-track: 220vh; }
  .hero__title { max-width: 12ch; }
  .hero__cta { gap: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero {
    height: 100svh;
    min-height: 420px;
  }
  .hero__stage {
    position: relative;
    height: 100%;
  }
  .hero__cue { display: none; }
  .hero__cue-mouse::before { animation: none; }
  .hero__ln > span,
  .hero__eyebrow,
  .hero__sub,
  .hero__cta {
    transform: none;
    opacity: 1;
    transition: none;
  }
  .hero__rule { width: 64px; }
}

/* About — editorial */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  width: 100%;
  min-width: 0;
}
.about__copy {
  max-width: 34rem;
  min-width: 0;
  width: 100%;
}
.about__eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.about__copy h2 {
  font-size: clamp(1.85rem, 3.6vw, 3.2rem);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 22px;
  max-width: none;
  overflow-wrap: anywhere;
}
.about__copy h2 span {
  display: block;
}
.about__lead {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.65;
  margin-bottom: 14px;
}
.about__note {
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.about__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.about__meta span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.about__meta span + span::before {
  content: "·";
  margin-right: 18px;
  color: rgba(17, 17, 17, .25);
}
.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.about__visual {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  align-self: stretch;
  width: 100%;
  min-width: 0;
  min-height: 280px;
  aspect-ratio: 5 / 4;
}
.about__visual-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  min-width: 0;
  min-height: 0;
}
.about__visual-item--tall {
  grid-row: 1 / -1;
}
.about__visual-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__visual-item--tall img { object-position: center 42%; }
.about__visual-item--square:nth-child(2) img { object-position: center 35%; }
.about__visual-item--square:nth-child(3) img { object-position: center 25%; }

/* Side-by-side only on wide screens */
@media (min-width: 1100px) {
  .about {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: clamp(40px, 5vw, 72px);
    align-items: center;
  }
  .about__visual {
    min-height: 480px;
  }
}
@media (max-width: 1099px) {
  .about__copy {
    max-width: none;
  }
  .about__copy h2 {
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  }
  .about__visual {
    order: -1;
    max-width: 720px;
    min-height: 0;
    aspect-ratio: 4 / 5;
    gap: 8px;
  }
}
@media (max-width: 560px) {
  .about {
    gap: 24px;
  }
  .about__copy h2 {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
  }
  .about__lead { font-size: 1.02rem; }
  .about__visual {
    aspect-ratio: 1 / 1;
    min-height: 240px;
    max-width: none;
  }
}

/* Inner page hero */
.page-hero {
  position: relative;
  min-height: clamp(280px, 48vh, 520px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: #fff;
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 56px;
  text-align: left;
}
@media (max-width: 560px) {
  .page-hero {
    min-height: 260px;
    padding: calc(var(--header-h) + 28px) 0 36px;
  }
}
.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__media picture,
.page-hero__media img {
  width: 100%;
  height: 100%;
  display: block;
}
.page-hero__media img {
  object-fit: cover;
}
.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 14, 12, .45) 0%, rgba(18, 14, 12, .78) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 40rem;
  margin: 0;
  text-align: left;
}
.page-hero h1 {
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 12px;
  color: #fff;
  text-align: left;
}
.page-hero__lead {
  margin: 0;
  max-width: 36ch;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, .82);
  text-align: left;
}

/* Contact page */
.contact-split {
  display: grid;
  gap: 28px;
}
.contact-col {
  display: grid;
  gap: 0;
  min-width: 0;
  background: var(--bg);
  overflow: hidden;
}
.contact-col__map {
  aspect-ratio: 16 / 11;
  min-height: 240px;
  background: var(--warm);
  overflow: hidden;
}
.contact-col__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-col__info {
  padding: clamp(22px, 3vw, 28px);
}
.contact-col__info h3 {
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 600;
  text-transform: capitalize;
}
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-list li {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid rgba(28, 23, 21, .1);
}
.contact-list li:last-child {
  border-bottom: 1px solid rgba(28, 23, 21, .1);
}
.contact-list__label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-list__value {
  color: var(--text);
  font-size: .96rem;
  line-height: 1.55;
}
.contact-list__value a {
  color: inherit;
}
.contact-list__value a:hover {
  color: var(--brand);
}
.contact-list__phones {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
}
.contact-list__sep {
  color: var(--muted);
}
.contact-col__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.contact-note {
  margin: 28px 0 0;
  padding: 16px 18px;
  background: var(--bg);
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}
@media (min-width: 900px) {
  .contact-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
  .contact-col__map {
    min-height: 280px;
  }
}

.about-concept {
  display: grid;
  gap: 36px;
  align-items: start;
}
.about-concept__copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.about-concept__copy p {
  margin: 0;
  max-width: 42ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}
.about-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.about-points li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}
.about-points li:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 900px) {
  .about-concept {
    grid-template-columns: 1.2fr .8fr;
    gap: 64px;
    align-items: center;
  }
}

/* About — 4 feature boxes */
.about-feats {
  display: grid;
  gap: 20px;
}
.about-feat {
  padding: clamp(24px, 3vw, 34px);
  background: var(--bg);
  color: var(--ink);
}
.about-feat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  color: var(--brand);
}
.about-feat__icon svg {
  display: block;
  width: 44px;
  height: 44px;
}
.about-feat h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
}
.about-feat p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6;
  max-width: 28ch;
}
@media (min-width: 700px) {
  .about-feats { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .about-feats { grid-template-columns: repeat(4, 1fr); }
  .about-feat p { max-width: none; }
}

.about-cta__inner {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}
.about-cta__inner h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}
.about-cta__inner p {
  margin: 0 0 28px;
  color: var(--muted);
}
.about-cta .about__actions {
  justify-content: center;
}

/* About page — full story from Hikayemiz */
.about-story__head {
  max-width: min(36rem, 100%);
  margin-bottom: 40px;
}
.about-story__title {
  font-size: clamp(1.85rem, 3.6vw, 2.7rem);
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.2;
  margin: 0;
}
.about-story__title span {
  display: block;
}
.about-story__title span + span {
  margin-top: .18em;
}
.about-story__grid {
  display: grid;
  gap: 36px;
  align-items: start;
}
.about-story .about__visual {
  width: 100%;
  max-width: 100%;
  min-height: 360px;
  aspect-ratio: 5 / 4;
  align-self: start;
}
.about-story__copy p {
  margin: 0 0 1.15em;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 54ch;
}
.about-story__copy .about-story__closing { margin-bottom: 0; }
.about-story__closing {
  font-family: var(--display);
  font-weight: 500;
  color: var(--ink) !important;
  font-size: 1.08rem !important;
  line-height: 1.55 !important;
}
.about-story__copy .about__meta { margin-top: 28px; margin-bottom: 0; }
@media (min-width: 960px) {
  .about-story__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
  }
  .about-story .about__visual {
    min-height: 480px;
    position: sticky;
    top: calc(var(--header-h) + 16px);
  }
}
@media (max-width: 959px) {
  .about-story .about__visual {
    min-height: 280px;
    aspect-ratio: 1 / 1;
  }
}

/* About page — mosaic */
.about-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(140px, 12vw);
  gap: 12px;
}
.about-mosaic__item {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--warm);
}
.about-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.about-mosaic__item:hover img { transform: scale(1.04); }
.about-mosaic__item--1 { grid-column: span 5; grid-row: span 2; }
.about-mosaic__item--2 { grid-column: span 3; grid-row: span 1; }
.about-mosaic__item--3 { grid-column: span 4; grid-row: span 1; }
.about-mosaic__item--4 { grid-column: span 3; grid-row: span 1; }
.about-mosaic__item--5 { grid-column: span 4; grid-row: span 1; }
.about-mosaic__item--6 { grid-column: span 5; grid-row: span 1; }
@media (max-width: 900px) {
  .about-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 42vw;
  }
  .about-mosaic__item--1,
  .about-mosaic__item--2,
  .about-mosaic__item--3,
  .about-mosaic__item--4,
  .about-mosaic__item--5,
  .about-mosaic__item--6 {
    grid-column: span 1;
    grid-row: span 1;
  }
  .about-mosaic__item--1 { grid-column: span 2; grid-row: span 1; }
}

/* About page — quote strip */
.about-quotes {
  display: grid;
  gap: 28px 40px;
}
@media (min-width: 900px) {
  .about-quotes { grid-template-columns: repeat(3, 1fr); }
}
.about-quote {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.about-quote__stars {
  color: var(--brand);
  letter-spacing: .08em;
  font-size: .9rem;
  margin-bottom: 12px;
}
.about-quote p {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.65;
}
.about-quote cite {
  font-style: normal;
  font-family: var(--display);
  font-weight: 600;
  font-size: .88rem;
  color: var(--ink);
}

/* About page — reserve banner */
.about-reserve {
  position: relative;
  min-height: clamp(380px, 56vh, 560px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  overflow: hidden;
  padding: clamp(56px, 8vw, 96px) 0;
  text-align: left;
}
.about-reserve__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-reserve__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-reserve__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 9, 8, .88) 0%, rgba(12, 9, 8, .72) 45%, rgba(12, 9, 8, .55) 100%);
}
.about-reserve .container {
  position: relative;
  z-index: 1;
}
.about-reserve__content {
  position: relative;
  z-index: 1;
  max-width: min(42rem, 100%);
  margin: 0;
  text-align: left;
}
.about-reserve__content h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  font-weight: 600;
  line-height: 1.12;
  text-transform: none;
}
.about-reserve__content p {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1.08rem, 1.8vw, 1.22rem);
  line-height: 1.55;
  max-width: 38ch;
}
.about-reserve__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}
.about-reserve .btn {
  min-height: 48px;
  padding: 12px 22px;
  font-size: .78rem;
}
.about-reserve .btn--brand {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.about-reserve .btn--brand:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.about-reserve .btn--light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
}
.about-reserve .btn--light:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

/* Events — VIP */
.events {
  background: var(--white);
  color: var(--text);
  padding: var(--section-y) 0;
}
.events.section--warm { background: var(--warm); }
.events.section--bg { background: var(--bg); }
.events__layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.events__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.events__content h2 {
  color: var(--ink);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 300;
  margin-bottom: 16px;
  max-width: 12ch;
}
.events__content > p {
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 28px;
  font-size: 1.02rem;
}
.events__list {
  display: grid;
  gap: 0;
  margin-bottom: 32px;
  border-top: 1px solid var(--line);
}
.events__list li {
  padding: 15px 0 15px 20px;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--muted);
  position: relative;
  cursor: pointer;
  transition: color .3s;
}
.events__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2px;
  height: 14px;
  margin-top: -7px;
  background: var(--line);
  transition: background .3s, height .3s, margin-top .3s;
}
.events__list li:hover,
.events__list li.is-active,
.events__list li:focus-visible {
  color: var(--ink);
  outline: none;
}
.events__list li:hover::before,
.events__list li.is-active::before,
.events__list li:focus-visible::before {
  background: var(--brand);
  height: 22px;
  margin-top: -11px;
}
.events__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.events__media {
  overflow: hidden;
  background: var(--warm);
  min-height: 360px;
  aspect-ratio: 5 / 4;
}
.events__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .45s var(--ease), transform .7s var(--ease);
}
.events__media img.is-fading {
  opacity: 0;
  transform: scale(1.03);
}
@media (max-width: 900px) {
  .events { padding: var(--section-y-sm) 0; }
  .events__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .events__content h2 { max-width: none; }
  .events__media {
    /* min-height + aspect-ratio birlikte genişliği 448px'e zorluyor ve görsel
       container'ı sağdan taşıyordu. Yükseklik genişlikten türesin. */
    min-height: 0;
    aspect-ratio: 3 / 2;
    order: -1;
  }
}


/* Gallery */
.gallery-strip { position: relative; }
.gallery-strip__viewport {
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}
.gallery-strip__viewport:active { cursor: grabbing; }
.gallery-strip__track {
  display: flex;
  gap: 12px;
  transition: transform .7s var(--ease);
  will-change: transform;
}
.gallery-strip__item {
  flex: 0 0 calc((100% - 36px) / 4);
  min-width: 0;
  aspect-ratio: 3 / 4;
  height: auto;
  border: 0;
  padding: 0;
  background: var(--bg);
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  -webkit-user-drag: none;
}
.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .65s var(--ease);
}
.gallery-strip__item:hover img { transform: scale(1.04); }

/* Gallery page — box carousel (4 visible) */
.gallery-carousel-section {
  padding-top: calc(var(--header-h) + 40px);
}
.gallery-page-title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}
.gallery-boxes { position: relative; }
.gallery-boxes__viewport {
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}
.gallery-boxes__viewport:active { cursor: grabbing; }
.gallery-boxes__track {
  display: flex;
  gap: 16px;
  transition: transform .7s var(--ease);
  will-change: transform;
}
.gallery-boxes__item {
  flex: 0 0 calc((100% - 48px) / 4);
  min-width: 0;
  aspect-ratio: 3 / 4;
  border: 0;
  padding: 0;
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  -webkit-user-drag: none;
}
.gallery-boxes__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s var(--ease);
}
.gallery-boxes__item:hover img { transform: scale(1.04); }
.gallery-boxes__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
}
.gallery-boxes__bar .carousel-dots { margin-top: 0; }
.gallery-boxes__nav {
  display: flex;
  gap: 8px;
}
.gallery-boxes__btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: .25s;
}
.gallery-boxes__btn:hover {
  border-color: var(--brand);
  color: var(--brand);
}
@media (max-width: 899px) {
  .gallery-boxes__item {
    flex-basis: calc((100% - 16px) / 2);
  }
}
@media (max-width: 559px) {
  .gallery-boxes__item {
    flex-basis: 100%;
  }
}

/* Gallery page — image list */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}
.gallery-filters__btn {
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: .25s;
}
.gallery-filters__btn:hover,
.gallery-filters__btn.is-active {
  background: var(--btn);
  border-color: var(--btn);
  color: #fff;
}

.gallery-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}
.gallery-cats__btn {
  padding: 7px 12px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--muted);
  font-family: var(--font);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .25s, border-color .25s;
}
.gallery-cats__btn:hover,
.gallery-cats__btn.is-active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.gallery-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.gallery-list__item {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--bg);
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
.gallery-more { text-align: center; margin-top: 32px; }
.gallery-more[hidden] { display: none; }
.gallery-list__item[hidden] { display: none !important; }
.gallery-list__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s var(--ease);
}
.gallery-list__item:hover img { transform: scale(1.04); }
@media (min-width: 700px) {
  .gallery-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}
@media (min-width: 1100px) {
  .gallery-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
}
.carousel-dots {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}
.carousel-dots__dot {
  width: 26px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(17, 17, 17, .18);
  cursor: pointer;
  transition: background .25s, width .25s;
}
.carousel-dots__dot.is-active {
  width: 38px;
  background: var(--ink);
}
.carousel-dots__dot:hover:not(.is-active) {
  background: rgba(17, 17, 17, .35);
}
@media (max-width: 900px) {
  .gallery-strip__item {
    flex-basis: calc((100% - 12px) / 2);
  }
}
@media (max-width: 560px) {
  .gallery-strip__item {
    flex-basis: 68%;
  }
}

/* Features marquee */
.feat-marquee {
  margin-top: 36px;
}
.section--features .feat-marquee {
  margin-top: 0;
}
.section--features {
  padding-block: clamp(28px, 4vw, 40px);
}
.feat-marquee__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.feat-marquee__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: featMarquee 32s linear infinite;
}
.feat-marquee__viewport:hover .feat-marquee__track {
  animation-play-state: paused;
}
.feat-marquee__set {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.feat-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
  white-space: nowrap;
  color: var(--ink);
}
.feat-marquee__item + .feat-marquee__item {
  border-left: 1px solid rgba(28, 23, 21, .12);
}
.feat-marquee__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  line-height: 0;
}
.feat-marquee__label {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
@keyframes featMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .feat-marquee__track { animation: none; }
}

/* Locations */
.section--branches {
  position: relative;
  background: var(--bg);
}
.section--branches > .container {
  position: relative;
  z-index: 1;
}

.loc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.loc-card {
  background: rgba(255, 255, 255, .96);
  border: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.loc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 14px rgba(0, 0, 0, .055);
}
.loc-card__media {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #1a1412;
  isolation: isolate;
}
.loc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.04);
  transition: transform .7s var(--ease);
}
.loc-card:hover .loc-card__media img { transform: scale(1.08); }
.loc-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, .55));
  pointer-events: none;
}
.loc-card__media-bar {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.loc-card__tag {
  padding: 6px 12px;
  background: var(--brand);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.loc-card__badge {
  padding: 6px 14px;
  background: rgba(255, 255, 255, .82);
  color: var(--brand);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.loc-card__body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.loc-card__body h3 {
  font-size: 1.55rem;
  margin-bottom: 18px;
  color: var(--ink);
}
.loc-card__info {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
  padding: 0;
  border-top: 0;
}
.loc-card__info li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: start;
}
.loc-card__label {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 3px;
}
.loc-card__value {
  color: var(--ink);
  font-size: .92rem;
  line-height: 1.5;
}
.loc-card__value a {
  color: var(--ink);
  font-weight: 500;
}
.loc-card__value a:hover { color: var(--brand); }
.loc-card__phones {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.loc-card__sep { color: var(--muted); }
.loc-card__hours {
  display: grid;
  gap: 4px;
  color: var(--muted);
}
.loc-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}
.loc-card__actions .btn--outline {
  background: transparent;
  color: var(--btn);
  border-color: var(--btn);
}
.loc-card__actions .btn--outline:hover {
  background: var(--btn);
  border-color: var(--btn);
  color: #fff;
}
@media (max-width: 900px) {
  .loc-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0;
    padding: 6px 0 14px;
  }
  .loc-grid::-webkit-scrollbar { display: none; }
  .loc-card {
    flex: 0 0 min(340px, 82%);
    width: min(340px, 82%);
    max-width: 340px;
    scroll-snap-align: start;
  }
  .loc-card:hover {
    transform: none;
    box-shadow: none;
  }
  .loc-card__media { height: 200px; }
  .loc-card__body { padding: 22px 20px 24px; }
  .loc-card__body h3 { font-size: 1.35rem; }
  .loc-card__info li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Instagram — canlı akış (Orjin / Sekiz yapısı) */
.ig-section {
  background: var(--white);
  padding: var(--section-y) 0;
  overflow: hidden;
}
.ig-branch-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 0 28px;
}
.ig-branch-tab {
  padding: 8px 16px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: .25s;
}
.ig-branch-tab:hover,
.ig-branch-tab.is-active {
  background: var(--btn);
  border-color: var(--btn);
  color: #fff;
}
.ig-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  text-align: left;
}
.ig-profile {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}
.ig-profile__id {
  text-align: left;
}
.ig-profile__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.ig-profile__icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) saturate(100%);
}
.ig-profile__handle {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
}
.ig-profile__handle:hover { color: var(--brand); }
.ig-viewport {
  width: 100%;
  overflow: hidden;
}
.ig-viewport.is-paused .ig-track {
  animation-play-state: paused;
}
.ig-track {
  display: flex;
  gap: 12px;
  width: max-content;
  min-height: 320px;
  will-change: transform;
  animation: igMarquee var(--ig-duration, 45s) linear infinite;
}
.ig-track.is-static {
  animation: none;
}
.ig-track:hover {
  animation-play-state: paused;
}
.ig-set {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}
@keyframes igMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * var(--ig-shift, 50%))); }
}
@media (prefers-reduced-motion: reduce) {
  .ig-track { animation: none; }
}
@media (max-width: 900px) {
  .ig-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    touch-action: pan-x;
  }
  .ig-viewport::-webkit-scrollbar { display: none; }
  .ig-track { min-height: 0; }
  .ig-card {
    scroll-snap-align: start;
  }
  .ig-card:hover img { transform: none; }
}
.ig-card {
  position: relative;
  flex: 0 0 clamp(150px, 14.5vw, 220px);
  width: clamp(150px, 14.5vw, 220px);
  aspect-ratio: 9 / 15;
  overflow: hidden;
  background: #1b1815;
  color: inherit;
}
.ig-card img,
.ig-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.ig-card:hover img { transform: scale(1.05); }
.ig-card::after {
  content: "";
  position: absolute;
  inset: 50% 0 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .82));
  pointer-events: none;
}
.ig-card__play {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  color: #fff;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .5));
}
.ig-card__cap {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  color: #f2eee8;
  font-size: .78rem;
  font-weight: 400;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ig-empty {
  padding: 48px 20px;
  color: var(--muted);
  font-size: .95rem;
}
@media (max-width: 900px) {
  .ig-card {
    flex-basis: clamp(140px, 30vw, 200px);
    width: clamp(140px, 30vw, 200px);
  }
  .ig-section { padding: var(--section-y-sm) 0; }
}
@media (max-width: 640px) {
  .ig-card {
    flex-basis: clamp(130px, 42vw, 180px);
    width: clamp(130px, 42vw, 180px);
  }
}

/* Google Reviews */
.section--reviews {
  background: var(--bg);
  color: var(--text);
  padding: var(--section-y) 0;
}
.section--reviews.section--white { background: var(--white); }
.section--reviews.section--warm { background: var(--warm); }
.section--reviews .section-head h2,
.section--reviews .g-heading {
  color: var(--ink);
}
.section--reviews .section-head p {
  color: var(--muted);
}
.g-heading {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.g-heading__mark {
  display: inline-flex;
  flex-shrink: 0;
}
.reviews-branch-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 28px;
}
.reviews-branch-tab {
  padding: 8px 16px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: .25s;
}
.reviews-branch-tab:hover,
.reviews-branch-tab.is-active {
  background: var(--btn);
  border-color: var(--btn);
  color: #fff;
}
.reviews-panel[hidden] { display: none !important; }
.section--reviews > .container,
.reviews-panel {
  overflow: visible;
}
.reviews-carousel {
  position: relative;
  overflow: visible;
}
.reviews-viewport {
  overflow: hidden;
}
.reviews-track {
  display: flex;
  gap: 24px;
  align-items: stretch;
  will-change: transform;
  transition: transform .7s var(--ease);
}
.reviews-track > .review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease);
}
.review-card:hover { transform: translateY(-4px); }
.review-card--google { padding-top: 34px; }
.review-card--google .g-mark {
  position: absolute;
  top: 22px;
  right: 22px;
  opacity: .9;
}
.review-card__stars {
  color: #fbbc04;
  margin-bottom: 14px;
  letter-spacing: 2px;
  font-size: .9rem;
}
.review-card p {
  color: var(--text);
  margin-bottom: 22px;
  font-weight: 300;
  font-style: italic;
  flex: 1;
  line-height: 1.65;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
}
.review-card__name {
  font-weight: 600;
  color: var(--ink);
}
.review-card__role {
  font-size: .78rem;
  color: var(--muted);
}
.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: .25s;
}
.reviews-nav:hover {
  background: var(--btn);
  border-color: var(--btn);
  color: #fff;
}
.reviews-nav--prev { left: 8px; }
.reviews-nav--next { right: 8px; }
.reviews-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
  text-align: center;
}
.g-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.g-stars {
  color: #fbbc04;
  letter-spacing: 2px;
  font-size: 1.1rem;
}
.g-rating__txt {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 300;
}
.reviews-empty {
  padding: 48px 24px;
  text-align: center;
  border: 1px dashed var(--line);
  color: var(--muted);
  background: var(--white);
}
@media (max-width: 1100px) {
  .reviews-track > .review-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
  .reviews-nav--prev { left: 4px; }
  .reviews-nav--next { right: 4px; }
}
@media (max-width: 700px) {
  .reviews-nav { display: none !important; }
  .reviews-carousel { overflow: visible; }
  .reviews-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0;
    padding: 0;
  }
  .reviews-viewport::-webkit-scrollbar { display: none; }
  .reviews-track {
    gap: 14px;
    transform: none !important;
    transition: none !important;
    will-change: auto;
    width: max-content;
  }
  .reviews-track > .review-card {
    flex: 0 0 min(320px, 82%);
    max-width: 320px;
    scroll-snap-align: start;
  }
  .review-card:hover { transform: none; }
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.faq-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin-bottom: 12px;
}
.faq-head p {
  color: var(--muted);
  max-width: 36ch;
  font-size: 1rem;
  line-height: 1.6;
}
.faq-list {
  display: grid;
  gap: 10px;
  margin: 0;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  transition: color .3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-right: 4px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: rotate(45deg);
  transition: transform .45s var(--ease), border-color .3s;
  transform-origin: center;
}
.faq-item.is-open summary { color: var(--ink); }
.faq-item.is-open summary::after {
  border-color: var(--ink);
  transform: rotate(225deg);
}
.faq-item summary:hover { color: var(--brand); }
.faq-item summary:hover::after { border-color: var(--brand); }
.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .42s cubic-bezier(.22, .61, .36, 1);
}
.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}
.faq-item.is-closing .faq-item__panel {
  transition-duration: .72s;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}
.faq-item__body {
  overflow: hidden;
  min-height: 0;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity .35s ease,
    transform .35s ease,
    padding .42s cubic-bezier(.22, .61, .36, 1);
}
.faq-item.is-open .faq-item__body {
  padding: 0 20px 20px;
  opacity: 1;
  transform: none;
  transition-delay: .06s;
}
.faq-item.is-closing .faq-item__body {
  opacity: 0;
  transform: translateY(-4px);
  padding: 0 20px;
  transition-duration: .55s, .55s, .72s;
  transition-delay: 0s;
}
.faq-item__body p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item__panel,
  .faq-item__body,
  .faq-item summary::after {
    transition: none !important;
  }
}
@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .faq-head p { max-width: 40ch; }
}

/* Footer */
.footer {
  background: var(--footer);
  color: rgba(255,255,255,.72);
  padding: clamp(56px, 8vw, 88px) 0 0;
}
.footer__grid {
  display: grid;
  gap: 40px 32px;
  grid-template-columns: 1.4fr 1fr 1.15fr 1fr;
  padding-bottom: 48px;
}
.footer__logo { display: inline-block; line-height: 0; margin-bottom: 16px; }
.footer .brand__img { height: 40px; margin-bottom: 0; }
.footer__brand p {
  max-width: 280px;
  font-size: .94rem;
  line-height: 1.6;
  margin: 0 0 20px;
  color: rgba(255,255,255,.68);
}
.footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.82);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: border-color .25s, color .25s, background .25s;
}
.footer__socials a:hover {
  color: #fff;
  border-color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.06);
}
.footer__socials img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.footer__col h4 {
  margin: 0 0 18px;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.footer__col a,
.footer__linkbtn {
  display: block;
  margin-bottom: 12px;
  font-size: .92rem;
  color: rgba(255,255,255,.72);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.footer__col a strong {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: 2px;
}
.footer__col a span {
  display: block;
  font-size: .86rem;
  color: rgba(255,255,255,.58);
}
.footer__col a:hover,
.footer__linkbtn:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.footer__bottom-inner p { margin: 0; }
.footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}
.footer__bottom-links a {
  color: rgba(255,255,255,.55);
}
.footer__bottom-links a:hover { color: #fff; }
.footer__credit { display: inline-flex; align-items: center; line-height: 0; opacity: .55; transition: opacity .2s ease; }
.footer__credit:hover { opacity: 1; }
.footer__credit img { height: 22px; width: auto; display: block; }
@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* Legal pages */
.legal-section {
  padding-top: calc(var(--header-h) + 40px);
}
.legal-layout {
  display: grid;
  gap: 32px;
  align-items: start;
}
.legal-side {
  background: var(--bg);
  padding: 22px 20px;
}
.legal-side__label {
  margin: 0 0 14px;
  /* Bağlantı metinleri 14px dolguyla başlıyor; etiket onlarla aynı hizada dursun. */
  padding-left: 14px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.legal-side__nav {
  display: grid;
  gap: 4px;
}
.legal-side__nav a {
  display: block;
  padding: 12px 14px;
  color: var(--text);
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.35;
  transition: background .2s, color .2s;
}
.legal-side__nav a:hover {
  color: var(--brand);
  background: rgba(156, 59, 41, .06);
}
.legal-side__nav a.is-active {
  color: #fff;
  background: var(--brand);
}
.legal-main {
  min-width: 0;
}
.legal-head {
  margin-bottom: 28px;
}
.legal-head h1 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 600;
  text-transform: none;
}
.legal-head p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}
.legal-doc {
  max-width: none;
}
.legal-doc h2 {
  margin: 28px 0 10px;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: none;
  color: var(--ink);
}
.legal-doc h2:first-child {
  margin-top: 0;
}
.legal-doc p,
.legal-doc li {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}
.legal-doc ul,
.legal-doc ol {
  margin: 0 0 16px;
  padding-left: 1.2em;
}
.legal-doc a {
  color: var(--brand);
  text-decoration: underline;
}
.legal-doc__block {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.legal-doc__block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.legal-doc__block h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: none;
}
.legal-doc__block p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}
@media (min-width: 900px) {
  .legal-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 48px;
  }
  .legal-side {
    position: sticky;
    top: calc(var(--header-h) + 20px);
  }
}

/* Modal */
.modal[hidden] { display: none !important; }
.modal {
  position: fixed; inset: 0; z-index: 120;
  display: grid; place-items: center; padding: 20px;
}
.modal-bg { position: absolute; inset: 0; background: rgba(12, 10, 9, .55); }
.modal-card {
  position: relative; z-index: 1;
  width: min(420px, 100%);
  background: #fff;
  padding: 32px 28px 28px;
  box-shadow: var(--shadow);
  max-height: min(90vh, 720px);
  overflow: auto;
}
.modal-card--split {
  width: min(1180px, 100%);
  height: min(92vh, 720px);
  max-height: min(92vh, 720px);
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.15fr);
  align-items: stretch;
}
.modal-visual {
  position: relative;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background: #1a1513;
}
.modal-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .35s var(--ease);
}
.modal-visual__overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  color: #fff;
  background: linear-gradient(180deg, rgba(10,8,7,.35) 0%, rgba(10,8,7,.72) 55%, rgba(10,8,7,.88) 100%);
}
.modal-visual__eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .75;
  margin-bottom: auto;
}
.modal-visual__title {
  color: #fff !important;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 14px;
  max-width: 12ch;
}
.modal-visual__text {
  margin: 0 0 36px;
  font-size: .95rem;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  max-width: 32ch;
}
.modal-visual__contact span {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .55;
  margin-bottom: 6px;
}
.modal-visual__contact a {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: .02em;
}
.modal-visual__contact a:hover { opacity: .85; }
.modal-form-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 36px 40px 0;
  overflow: visible;
  background: #fff;
}
.modal-form-panel__head {
  margin-bottom: 22px;
  padding-right: 40px;
  flex-shrink: 0;
}
.modal-form-panel__head h2 {
  font-size: clamp(1.45rem, 2vw, 1.7rem);
  font-weight: 500;
  margin: 0 0 8px;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.2;
}
.modal-form-panel__head p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
  max-width: 36ch;
}
.modal-form-panel__form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: visible;
}
.modal-form-panel__fields {
  flex: 1;
  min-height: 0;
  overflow: visible;
  display: grid;
  gap: 16px;
  align-content: start;
}
.modal-form-panel__foot {
  flex-shrink: 0;
  margin: 0;
  padding: 18px 0 28px;
  display: block;
  background: #fff;
}
.modal-form-panel__foot .btn {
  width: 100%;
  min-width: 0;
  height: 46px;
  font-size: .72rem;
  letter-spacing: .1em;
}
.modal-x {
  position: absolute; top: 14px; right: 16px; z-index: 3;
  border: 0; background: none;
  width: 36px; height: 36px;
  font-size: 1.45rem; cursor: pointer; color: var(--muted);
  display: grid; place-items: center;
  line-height: 1;
}
.modal-x:hover { color: var(--ink); }

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

.reserve-branch {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}
.reserve-branch__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.reserve-branch__option {
  position: relative;
  margin: 0 !important;
  cursor: pointer;
}
.reserve-branch__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}
.reserve-branch__option span {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 0 !important;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: #faf8f6;
  color: var(--text);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  text-align: center;
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.reserve-branch__option:hover span {
  border-color: #d4cbc4;
}
.reserve-branch__option input:checked + span {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.reserve-branch__option input:focus-visible + span {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.modal-card label { display: block; margin-bottom: 0; }
.modal-card label span {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 7px;
  color: var(--muted);
}
.modal-card input,
.modal-card select,
.modal-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #faf8f6;
  color: var(--ink);
  font: inherit;
  font-size: .95rem;
  line-height: 1.4;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.modal-card input:hover,
.modal-card select:hover,
.modal-card textarea:hover {
  border-color: #d4cbc4;
}
.modal-card input:focus,
.modal-card select:focus,
.modal-card textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
}
.modal-card textarea {
  resize: none;
  min-height: 72px;
  line-height: 1.5;
}
.modal-card input::placeholder,
.modal-card textarea::placeholder {
  color: #a39a94;
}
.form-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-3 {
  display: grid;
  grid-template-columns: 1.1fr 1fr .75fr;
  gap: 12px;
}
.reserve-note {
  margin: 0;
}

.phone-field {
  min-width: 0;
}
.phone-field .iti {
  --iti-border-color: var(--line);
  --iti-dialcode-color: var(--ink);
  --iti-arrow-color: var(--muted);
  --iti-hover-color: #f3eeea;
  --iti-spacer-horizontal: 12px;
  width: 100%;
  display: block;
}
.phone-field .iti__tel-input,
.phone-field .iti input.iti__tel-input {
  width: 100%;
  height: 48px;
  min-height: 48px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-right: 14px !important;
  border: 1px solid var(--line) !important;
  background: #faf8f6 !important;
  color: var(--ink);
  font: inherit;
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.4;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.phone-field .iti__tel-input:hover {
  border-color: #d4cbc4 !important;
}
.phone-field .iti__tel-input:focus {
  outline: none;
  border-color: var(--ink) !important;
  background: #fff !important;
}
.phone-field .iti__country-container {
  margin: 0;
  padding: 1px;
}
.phone-field .iti__selected-country {
  height: 100%;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0;
}
.phone-field .iti__selected-country-primary {
  position: relative;
  height: calc(100% - 2px);
  margin: 1px 0 1px 1px;
  padding: 0 14px 0 12px;
  gap: 8px;
  background: #f0ebe7;
  border-right: 0;
  transition: background .2s var(--ease);
}
.phone-field .iti__selected-country-primary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: #cfc6bf;
}
.phone-field .iti__selected-country:hover .iti__selected-country-primary,
.phone-field .iti__selected-country[aria-expanded="true"] .iti__selected-country-primary {
  background: #e8e2de;
}
.phone-field .iti__selected-dial-code {
  margin: 0;
  font-size: .88rem;
  font-weight: 400;
  letter-spacing: .01em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.phone-field .iti__arrow {
  margin: 0 0 0 2px;
  border-top-color: var(--muted);
  opacity: .85;
}
.phone-field .iti__arrow--up {
  border-top-color: transparent;
  border-bottom-color: var(--ink);
}
.phone-field .iti__tel-input.is-invalid {
  border-color: var(--brand) !important;
  background: #fdf7f5 !important;
}
.phone-field .iti__tel-input::placeholder {
  color: #a39a94;
}

.iti--container {
  z-index: 200 !important;
  font-family: var(--font);
}
.iti__dropdown-content {
  width: min(320px, calc(100vw - 32px)) !important;
  margin-top: 6px;
  padding: 0 !important;
  border: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .12) !important;
  overflow: hidden;
}
.iti__search-input {
  width: 100% !important;
  height: 44px !important;
  margin: 0 !important;
  padding: 0 14px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: #faf8f6 !important;
  font: inherit !important;
  font-size: .9rem !important;
  color: var(--ink) !important;
}
.iti__search-input:focus {
  outline: none !important;
  background: #fff !important;
}
.iti__country-list {
  max-height: 260px !important;
  font-family: var(--font);
  padding: 6px 0 !important;
}
.iti__country {
  padding: 10px 14px !important;
  gap: 10px;
}
.iti__country-name {
  font-size: .9rem;
  color: var(--ink);
}
.iti__dial-code {
  font-size: .84rem;
  font-weight: 500;
  color: var(--muted) !important;
}
.iti__country.iti__highlight {
  background: #f3eeea !important;
}

/* Datepicker */
.datepicker {
  position: relative;
}
.datepicker__display {
  cursor: pointer;
}
.datepicker__display.is-empty {
  color: var(--muted);
}
.datepicker__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 40;
  width: 320px;
  min-width: 320px;
  max-width: min(320px, calc(100vw - 48px));
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 14px 14px 10px;
  box-sizing: border-box;
}
.datepicker__panel[hidden] { display: none !important; }
.datepicker__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.datepicker__month-btn {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  cursor: default;
}
.datepicker__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.datepicker__nav button {
  border: 0;
  background: none;
  width: 24px;
  height: 18px;
  padding: 0;
  cursor: pointer;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1;
}
.datepicker__nav button:hover { color: var(--ink); }
.datepicker__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
}
.datepicker__weekdays span {
  text-align: center;
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  padding: 4px 0;
  letter-spacing: 0;
  text-transform: none;
  margin: 0;
}
.datepicker__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.datepicker__day {
  border: 0;
  background: transparent;
  aspect-ratio: 1;
  min-height: 34px;
  font: inherit;
  font-size: .88rem;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .15s, color .15s;
}
.datepicker__day:hover:not(:disabled):not(.is-selected) {
  background: var(--bg);
}
.datepicker__day.is-muted { color: #b7b0ab; }
.datepicker__day.is-today:not(.is-selected) {
  box-shadow: inset 0 0 0 1px var(--brand);
}
.datepicker__day.is-selected {
  background: var(--brand);
  color: #fff;
  font-weight: 600;
}
.datepicker__day.is-disabled,
.datepicker__day:disabled {
  color: #d0cbc7;
  cursor: default;
}
.datepicker__foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.datepicker__foot button {
  border: 0;
  background: none;
  padding: 6px 2px;
  font: inherit;
  font-size: .84rem;
  font-weight: 600;
  color: var(--brand);
  cursor: pointer;
}
.datepicker__foot button:hover { opacity: .75; }

.timepicker {
  position: relative;
}
.timepicker__display {
  cursor: pointer;
}
.timepicker__display.is-empty {
  color: var(--muted);
}
.timepicker__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 40;
  width: 320px;
  min-width: 320px;
  max-width: min(320px, calc(100vw - 48px));
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 10px;
  box-sizing: border-box;
}
.timepicker__panel[hidden] { display: none !important; }
.timepicker__list {
  display: grid;
  gap: 2px;
  max-height: 280px;
  overflow: auto;
}
.timepicker__slot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.timepicker__slot:hover {
  background: var(--bg);
}
.timepicker__slot.is-selected {
  background: var(--brand);
  color: #fff;
  font-weight: 600;
}

@media (max-width: 720px) {
  .form-2,
  .form-3 { grid-template-columns: 1fr; }
  .reserve-branch__options { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .modal-card--split {
    grid-template-columns: 1fr;
    height: auto;
    max-height: min(94vh, 920px);
    overflow: auto;
  }
  .modal-visual {
    min-height: 160px;
    height: 160px;
  }
  .modal-visual__overlay {
    min-height: 160px;
    padding: 24px 22px;
  }
  .modal-visual__title {
    max-width: none;
    font-size: 1.45rem;
    margin-bottom: 8px;
  }
  .modal-visual__text { display: none; }
  .modal-visual__eyebrow { margin-bottom: 16px; }
  .modal-form-panel {
    height: auto;
    max-height: none;
    padding: 26px 22px 0;
    overflow: visible;
  }
  .modal-form-panel__fields {
    overflow: visible;
  }
  .modal-form-panel__foot {
    padding-bottom: 22px;
  }
  .datepicker__panel {
    left: auto;
    right: 0;
  }
  .timepicker__panel {
    left: auto;
    right: 0;
  }
}
body.modal-open { overflow: hidden; }

/* Lightbox */
.lightbox[hidden] { display: none !important; }
.lightbox {
  position: fixed; inset: 0; z-index: 130;
  display: grid; place-items: center; padding: 24px;
}
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(10,6,5,.88); }
.lightbox__frame { position: relative; z-index: 1; max-width: min(1000px, 100%); }
.lightbox__frame img { max-height: 82vh; width: auto; margin: 0 auto; border-radius: var(--radius); }
.lightbox__close {
  position: absolute; top: 18px; right: 22px; z-index: 2;
  border: 0; background: none; color: #fff; font-size: 2rem; cursor: pointer;
}

/* Reveal */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ===== Açılış ekranı ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #fff;
  transition: opacity .55s var(--ease), visibility .55s var(--ease);
}
.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  /* z-index 9999 ile her şeyin üstünde; dokunuşları yakalamasın diye
     kapandığında tıklamaya tamamen kapatılıyor. */
  pointer-events: none;
}
.preloader__logo {
  width: min(240px, 55vw);
  height: auto;
  /* Projede siyah logo yok; marka logosunu saf siyaha çevirir.
     Marka rengiyle görünmesini istersen bu satırı sil. */
  filter: brightness(0);
  animation: preloader-breathe 1.6s var(--ease) infinite;
}
@keyframes preloader-breathe {
  0%, 100% { opacity: .3; transform: scale(.96); }
  50%      { opacity: 1;  transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .preloader__logo { animation: none; opacity: 1; }
  .preloader { transition-duration: .01ms; }
}

/* ===== Yorum şeridi (kendiliğinden kayan) =====
   Şerit iki özdeş kopyadan oluşuyor; -%50 + yarım boşluk kaydırınca döngü
   dikişsiz kapanıyor. Kartlar artık .reviews-set içinde olduğu için
   yukarıdaki .reviews-track > .review-card kuralları eşleşmiyor. */
.reviews-track {
  width: max-content;
  transition: none;
  animation: reviews-marquee var(--reviews-duration, 40s) linear infinite;
}
.reviews-set {
  display: flex;
  gap: 24px;
  align-items: stretch;
}
.reviews-set > .review-card {
  flex: 0 0 clamp(280px, 26vw, 360px);
  min-width: 0;
}
.reviews-carousel:hover .reviews-track,
.reviews-carousel:focus-within .reviews-track {
  animation-play-state: paused;
}
@keyframes reviews-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 12px)); }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; }
}
@media (max-width: 700px) {
  /* Mobilde elle kaydırılıyor; otomatik akış kapalı. */
  .reviews-track { animation: none; }
  .reviews-set { gap: 14px; }
  .reviews-set > .review-card {
    flex: 0 0 min(320px, 82%);
    max-width: 320px;
    scroll-snap-align: start;
  }
}

/* Yorum şeridi tam genişlik: container'ın dışına taşar.
   100vw kaydırma çubuğunu da saydığı için taşma section'da kırpılıyor. */
.section--reviews { overflow-x: clip; }
.reviews-carousel {
  width: 100vw;
  max-width: 100vw;
  margin-inline: calc(50% - 50vw);
}

/* ===== Mobil menü açıkken başlık şeffaf kalsın ===== */
@media (max-width: 979px) {
  /* Menü açılınca başlık beyaza dönüyordu; hero görseli üstünde şeffaf kalması isteniyor. */
  .header.is-open,
  .header--overlay.is-open {
    background: transparent;
    box-shadow: none;
  }
  .header.is-open .brand__img--color,
  .header--overlay.is-open .brand__img--color { display: none; }
  .header.is-open .brand__img--light,
  .header--overlay.is-open .brand__img--light { display: block; }
  /* TR ve hamburger açık menüde beyaz panelin üstünde duruyor; beyaz olurlarsa
     kaybolurlar. Logo ise solda hero görselinin üstünde kaldığı için beyaz kalıyor. */
  .header.is-open .nav-toggle span,
  .header--overlay.is-open .nav-toggle span { background: var(--ink); }
  .header.is-open .lang-dd__toggle,
  .header--overlay.is-open .lang-dd__toggle { color: var(--ink); }

  /* Panel tam yükseklikte; öğeler üstten başlıyor. Hamburger sağda, ilk öğe
     solda olduğu için aynı bantta olsalar da çakışmıyorlar. */
  .nav { padding-top: 26px; }
}

/* ===== Rezervasyon modalı — telefon düzeni =====
   Küçük ekranda kart ortada yüzen bir kutu yerine tam ekran sayfa gibi çalışıyor:
   görsel bandı kısalıyor, alanlar sığıyor, gönder butonu altta sabit kalıyor. */
@media (max-width: 640px) {
  #reserve-modal.modal { padding: 0; }

  #reserve-modal .modal-card--split {
    width: 100%;
    max-width: none;
    height: 100dvh;
    max-height: 100dvh;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
  }

  /* Görsel bant: başlık sığacak kadar. İletişim bloğu 160px'e sığmayıp
     altı form panelinin arkasında kesiliyordu. */
  #reserve-modal .modal-visual,
  #reserve-modal .modal-visual__overlay {
    min-height: 124px;
    height: 124px;
  }
  #reserve-modal .modal-visual__overlay { padding: 18px 20px; }
  #reserve-modal .modal-visual__contact { display: none; }
  #reserve-modal .modal-visual__eyebrow { margin-bottom: 8px; }
  #reserve-modal .modal-visual__title {
    font-size: 1.22rem;
    margin-bottom: 0;
  }

  /* Form alanı tek kaydırma yüzeyi; buton onun dışında sabit. */
  #reserve-modal .modal-form-panel {
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 18px 20px 0;
    overflow: hidden;
  }
  #reserve-modal .modal-form-panel__form {
    min-height: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  #reserve-modal .modal-form-panel__fields {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  #reserve-modal .modal-form-panel__head { margin-bottom: 14px; }

  /* Alanlar alt alta uzayıp formu şişiriyordu; yan yana sığıyorlar. */
  #reserve-modal .reserve-branch__options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #reserve-modal .form-3 { grid-template-columns: 1fr 1fr; }
  #reserve-modal .form-3 > *:last-child { grid-column: 1 / -1; }

  /* Kapatma tuşu koyu görselin üstünde kayboluyordu; beyaz daire ile ayrışıyor. */
  #reserve-modal .modal-x {
    background: #fff;
    color: var(--ink);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    top: 12px;
    right: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
  }

  #reserve-modal .modal-form-panel__foot {
    position: sticky;
    bottom: 0;
    margin-top: auto;
    padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
    background: #fff;
  }
}

/* ===== Galeri şeridi — mobilde parmakla kaydırma =====
   JS'in pointer tabanlı swipe'ı dokunmatikte güvenilir değil (öğeler <button>).
   Yorum şeridiyle aynı yaklaşım: tarayıcının kendi yatay kaydırması + snap. */
@media (max-width: 700px) {
  .gallery-strip__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    cursor: default;
  }
  .gallery-strip__viewport::-webkit-scrollbar { display: none; }
  .gallery-strip__track {
    /* JS otomatik akış için transform yazıyor; elle kaydırmayla çakışmasın. */
    transform: none !important;
    transition: none !important;
    will-change: auto;
  }
  .gallery-strip__item {
    /* Yüzde genişlik max-content ile birleşince şerit ölçüsü şişiyordu. */
    flex: 0 0 min(240px, 68vw);
    max-width: 240px;
    scroll-snap-align: start;
  }
}
