/* Masözara — ana sayfa ilk ekran (çoklu sayfa site) */

:root {
  /* assets/logomsz.svg ile aynı bronz */
  --logo-bronze: #682200;
  --logo-bronze-deep: #4a1700;
  --logo-bronze-light: #7d3010;
  --gold: #c9a962;
  --gold-dark: #a8863d;
  --ink: #212529;
  --text-body: #4b5563;
  --muted: #5a5a5a;
  --card: #ffffff;
  --radius: 22px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  /* Referans: Montserrat — başlık + gövde tek aile */
  --font-sans: "Montserrat", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background: #0c0a08;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* —— Üst gezinme: beyaz çubuk, logo | linkler | altın CTA (referans) —— */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.7rem 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.site-nav .inner {
  width: min(1280px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.nav-logo img {
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem clamp(0.65rem, 1.5vw, 1.1rem);
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.nav-links a {
  font-size: clamp(0.78rem, 1.35vw, 0.875rem);
  font-weight: 500;
  color: #2a2a2a;
  padding: 0.4rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: #111;
}

.nav-links a[aria-current="page"] {
  color: #111;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: #1a1a1a;
  text-underline-offset: 6px;
  border-bottom-color: transparent;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.62rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    var(--logo-bronze-light) 0%,
    var(--logo-bronze) 42%,
    var(--logo-bronze-deep) 100%
  );
  color: #fff !important;
  font-size: clamp(0.72rem, 1.2vw, 0.8125rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(104, 34, 0, 0.38);
  transition: filter 0.15s ease, transform 0.15s ease;
  flex-shrink: 0;
}

.nav-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.nav-cta svg {
  flex-shrink: 0;
}

/* Anasayfa #tanitim: intro menü — scroll ile viewport üstüne sabit (.intro-nav--pinned, site-nav.js) */
.page-home .site-nav--intro {
  position: relative;
  z-index: 50;
  width: 100%;
  background: #ffffff;
}

.page-home .site-nav--intro.intro-nav--pinned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* —— Mobil üst menü: büyük logo + hamburger (992px ve altı) —— */
.nav-burger {
  display: none;
}

.nav-backdrop {
  display: none;
}

@media (max-width: 992px) {
  body.site-nav-menu-open {
    overflow: hidden;
  }

  .site-nav {
    z-index: 100;
  }

  .site-nav .inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    column-gap: 0.5rem;
    row-gap: 0;
    flex-wrap: nowrap;
  }

  .nav-logo {
    min-width: 0;
    justify-self: start;
  }

  .nav-logo img {
    height: clamp(68px, 18vw, 88px);
    width: auto;
    max-width: min(260px, 58vw);
    object-fit: contain;
  }

  .nav-burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid rgba(104, 34, 0, 0.22);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    justify-self: end;
  }

  .nav-burger:hover {
    background: rgba(104, 34, 0, 0.06);
    border-color: rgba(104, 34, 0, 0.35);
  }

  .nav-burger:focus-visible {
    outline: 2px solid var(--logo-bronze);
    outline-offset: 2px;
  }

  .nav-burger__line {
    display: block;
    width: 1.25rem;
    height: 2px;
    border-radius: 1px;
    background: var(--logo-bronze-deep);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    transform-origin: center;
  }

  .site-nav.is-open .nav-burger__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-nav.is-open .nav-burger__line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .site-nav.is-open .nav-burger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-cta {
    margin-left: 0;
    justify-self: end;
    padding: 0.52rem 0.85rem;
    font-size: clamp(0.65rem, 2.8vw, 0.78rem);
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--site-nav-h, 72px);
    bottom: 0;
    z-index: 90;
    background: rgba(12, 10, 8, 0.48);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.32s ease, visibility 0.32s ease;
  }

  .site-nav.is-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav .inner {
    position: relative;
    z-index: 110;
  }

  .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--site-nav-h, 72px);
    bottom: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 1.25rem 1.35rem 2rem;
    margin: 0;
    background: linear-gradient(180deg, #ffffff 0%, #faf9f7 100%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
  }

  .site-nav.is-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.95rem 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links a[aria-current="page"] {
    color: var(--logo-bronze);
    text-decoration: none;
    border-left: 3px solid var(--logo-bronze);
    padding-left: calc(0.75rem - 3px);
    background: rgba(104, 34, 0, 0.05);
  }
}

@media (max-width: 992px) and (prefers-reduced-motion: reduce) {
  .nav-burger__line,
  .nav-backdrop,
  .nav-links {
    transition-duration: 0.01ms !important;
  }

  .site-nav.is-open .nav-links {
    transform: none;
  }
}

/* —— Kahraman —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -12px;
  background:
    linear-gradient(115deg, rgba(18, 14, 11, 0.88) 0%, rgba(18, 14, 11, 0.55) 48%, rgba(30, 22, 16, 0.42) 100%),
    url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=1920&q=85") center/cover no-repeat;
  z-index: 0;
  filter: blur(5px);
  transform: scale(1.06);
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 6.5rem 0 2.5rem;
  display: grid;
  grid-template-columns: minmax(280px, 400px) 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

/* İlk ekranda üst menü gizli — hero kartı için daha az üst boşluk */
.page-home .hero-grid {
  padding-top: clamp(2.75rem, 7vw, 4.25rem);
}

.hero-card {
  background: var(--card);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 2.35rem 1.85rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 440px;
  width: 100%;
}

.hero-brand {
  margin-bottom: 0.35rem;
  width: 100%;
}

.hero-logo {
  height: auto;
  width: min(200px, 82vw);
  max-height: 120px;
  object-fit: contain;
  margin: 0 auto 0.65rem;
}

.hero-kicker {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2.8vw, 1.125rem);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.55rem;
  letter-spacing: 0.01em;
}

.hero-card h1,
.hero-card__title {
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 3.4vw, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.hero-card .intro {
  margin: 0 0 1.45rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.58;
  color: var(--text-body);
  max-width: 34em;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  max-width: 100%;
  padding: 0.95rem 1.5rem;
  border: none;
  border-radius: 14px;
  background: linear-gradient(180deg, #2f2f2f 0%, #141414 100%);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

/* Yorum döngüsü — isim, metin, altta yıldız (referans kart) */
.t-carousel {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 1.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  min-height: 128px;
}

.t-slide {
  display: none;
  animation: fadeIn 0.5s ease;
}

.t-slide.is-active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.t-stars {
  letter-spacing: 5px;
  font-size: 0.95rem;
  margin-top: 0.65rem;
  margin-bottom: 0;
  line-height: 1.2;
}

.t-star-full {
  color: #c9a962;
}

.t-star-mute {
  color: #d1d5db;
  font-size: 0.92em;
}

.t-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.4rem;
  color: var(--text-body);
}

.t-text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.55;
  margin: 0;
}

.t-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  margin-top: 0.9rem;
  max-width: 100%;
  padding: 0 0.25rem;
}

.t-dots button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  padding: 0;
  flex-shrink: 0;
  background: #e2e8f0;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.t-dots button[aria-selected="true"] {
  background: #a8863d;
  transform: scale(1.15);
}

#review-carousel.t-fade .t-slide {
  animation: tReviewFade 0.42s ease;
}

@keyframes tReviewFade {
  from {
    opacity: 0.25;
  }
  to {
    opacity: 1;
  }
}

/* Hizmet bölgeleri */
.hero-areas {
  width: 100%;
  margin-top: 1.15rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.hero-areas__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
}

.hero-areas__line {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  color: #333333;
}

/* Kart altı orta — konum (ince çember + pin, referans) */
.loc-btn {
  margin-top: 0.95rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #1a1a1a;
  background: #fafafa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1a1a1a;
  transition: background 0.2s, transform 0.15s;
}

.loc-btn:hover {
  background: #f1f5f9;
  transform: scale(1.04);
}

.loc-btn:active {
  transform: scale(0.97);
}

/* Harita */
.hero-map {
  justify-self: end;
  width: 100%;
  max-width: 460px;
}

.map-shell {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  border: 3px solid rgba(255, 255, 255, 0.14);
  aspect-ratio: 4/3;
  background: #1a1a1a;
}

.map-shell iframe {
  width: 100%;
  max-width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Hero — ekranın alt-ortasında kaydırma ikonu (fare çerçevesi + çift ok, animasyonlu; fixed = ilk ekranda hep görünür) */
.hero-scroll {
  position: fixed;
  left: 50%;
  bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transform: translate(-50%, 0);
  animation: hero-scroll-bob 2.4s ease-in-out infinite;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.hero-scroll:hover,
.hero-scroll:focus-visible {
  color: #fff;
}

.hero-scroll:focus-visible {
  outline: 2px solid rgba(201, 169, 98, 0.85);
  outline-offset: 4px;
  border-radius: 8px;
}

.hero-scroll__mouse {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 30px;
  height: 46px;
  padding-top: 8px;
  box-sizing: border-box;
  border: 2px solid currentColor;
  border-radius: 17px;
  background: transparent;
}

.hero-scroll__arrows {
  display: block;
  animation: hero-scroll-wheel 1.65s ease-in-out infinite;
}

.hero-scroll__arrows svg {
  display: block;
}

@keyframes hero-scroll-bob {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 6px);
  }
}

@keyframes hero-scroll-wheel {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(6px);
    opacity: 0.72;
  }
}

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

  .hero-scroll__arrows {
    animation: none;
  }
}

/* Hero sonrası — beyaz bant (referans: logo + başlık + metin, sayfa aşağı devam eder) */
.intro-band {
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: clamp(2.5rem, 7vw, 4.5rem) 1.5rem clamp(3rem, 8vw, 5rem);
}

.page-home .intro-band {
  padding: 0 0 clamp(3rem, 8vw, 5rem);
}

.page-home .intro-band .intro-band__inner {
  padding: clamp(2.5rem, 7vw, 4.5rem) 1.5rem 0;
}

.intro-band__inner {
  width: min(640px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.intro-band__brand {
  margin-top: -0.35rem;
  margin-bottom: clamp(1.5rem, 3.5vw, 2rem);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-band__logo {
  width: min(200px, 52vw);
  height: auto;
  margin: 0 auto;
  display: block;
}

.intro-band__logo--reveal {
  opacity: 0;
  transform: translateY(20px);
}

.intro-band__fade {
  opacity: 0;
  transform: translateY(20px);
}

#tanitim.is-in-view .intro-band__logo--reveal {
  animation: fadeInUp 0.85s ease 0.38s forwards;
}

#tanitim.is-in-view .intro-band__kicker.intro-band__fade {
  animation: fadeInUp 0.75s ease 0.95s forwards;
}

#tanitim.is-in-view .intro-band__title.intro-band__fade {
  animation: fadeInUp 0.75s ease 1.12s forwards;
}

#tanitim.is-in-view .intro-band__lead.intro-band__fade {
  animation: fadeInUp 0.8s ease 1.28s forwards;
}

#tanitim.is-in-view .intro-band__more.intro-band__fade {
  animation: fadeInUp 0.75s ease 1.48s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .intro-band__logo--reveal,
  .intro-band__fade {
    opacity: 1;
    transform: none;
  }

  #tanitim.is-in-view .intro-band__logo--reveal,
  #tanitim.is-in-view .intro-band__fade {
    animation: none;
  }

}

.intro-band__kicker {
  margin: 0.85rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.intro-band__title {
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 4.2vw, 2.05rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #161616;
  margin: 0 0 1.35rem;
  line-height: 1.28;
}

.intro-band__lead {
  margin: 0;
  font-size: clamp(0.9375rem, 2.1vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.78;
  color: #5a5a5a;
}

.intro-band__more {
  margin: 2rem 0 0;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.75rem;
}

.intro-band__more a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.intro-band__more a:hover {
  color: #8a6f32;
}

.intro-band__dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c9c9c9;
  vertical-align: middle;
}

/* #tanitim altı — iki sütunlu özellik blokları + tanıtım şeridi + spot */
.home-below-intro {
  position: relative;
  z-index: 1;
  background: #ffffff;
}

.home-features {
  max-width: min(1180px, 94vw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.feature-slice {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
  padding: clamp(2.75rem, 6vw, 4.25rem) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.home-features .feature-slice:first-child {
  border-top: none;
}

.feature-slice--flip .feature-slice__media {
  order: 2;
}

.feature-slice--flip .feature-slice__body {
  order: 1;
}

.feature-slice__media {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.feature-slice__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.feature-slice__body {
  padding: 0 0.25rem;
}

.feature-slice__icon {
  display: block;
  color: var(--logo-bronze);
  margin-bottom: 1rem;
}

.feature-slice__title {
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #161616;
  margin: 0 0 1rem;
  line-height: 1.25;
}

.feature-slice__text {
  margin: 0;
  font-size: clamp(0.9375rem, 2vw, 1.03rem);
  line-height: 1.75;
  color: #5a5a5a;
}

.home-promo {
  position: relative;
  margin: clamp(1rem, 3vw, 2rem) 0 0;
  min-height: min(420px, 70vh);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem) 1.5rem;
  overflow: hidden;
}

.home-promo__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(18, 14, 11, 0.88) 0%, rgba(18, 14, 11, 0.72) 50%, rgba(30, 22, 16, 0.55) 100%),
    url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=1600&q=85") center/cover no-repeat;
  z-index: 0;
}

.home-promo__inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.home-promo__stars {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: #c9a962;
}

.home-promo__title {
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.home-promo__lead {
  margin: 0 0 1.5rem;
  font-size: clamp(0.9375rem, 2.1vw, 1.0625rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.home-promo__tags {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.home-promo__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff !important;
  background: linear-gradient(
    180deg,
    var(--logo-bronze-light) 0%,
    var(--logo-bronze) 42%,
    var(--logo-bronze-deep) 100%
  );
  box-shadow: 0 8px 24px rgba(104, 34, 0, 0.45);
  transition: filter 0.15s ease, transform 0.15s ease;
}

.home-promo__cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.home-spotlight {
  padding: clamp(3rem, 8vw, 5.5rem) 1.5rem clamp(3rem, 8vw, 5rem);
  background: #faf9f7;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.home-spotlight__grid {
  max-width: min(1180px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.home-spotlight__title {
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #161616;
  margin: 0 0 1rem;
  line-height: 1.25;
}

.home-spotlight__text {
  margin: 0 0 1.5rem;
  font-size: clamp(0.9375rem, 2vw, 1.03rem);
  line-height: 1.75;
  color: #5a5a5a;
}

.home-spotlight__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff !important;
  background: linear-gradient(
    180deg,
    var(--logo-bronze-light) 0%,
    var(--logo-bronze) 42%,
    var(--logo-bronze-deep) 100%
  );
  box-shadow: 0 6px 18px rgba(104, 34, 0, 0.32);
  transition: filter 0.15s ease, transform 0.15s ease;
}

.home-spotlight__cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.home-spotlight__media {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.home-spotlight__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

/* Sonsuz yatay galeri şeritleri (döngü) */
@keyframes gallery-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.home-gallery-loop {
  padding: clamp(2.5rem, 7vw, 4rem) 0 clamp(3rem, 8vw, 5rem);
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.home-gallery-loop__intro {
  max-width: 36rem;
  margin: 0 auto clamp(1.75rem, 4vw, 2.5rem);
  padding: 0 1.5rem;
  text-align: center;
}

.home-gallery-loop__title {
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 3.2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #161616;
  margin: 0 0 0.65rem;
  line-height: 1.25;
}

.home-gallery-loop__lead {
  margin: 0;
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.65;
  color: #5a5a5a;
}

.home-gallery-loop__viewport {
  overflow: hidden;
  width: 100%;
}

.home-gallery-loop__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.home-gallery-loop__track--forward {
  animation: gallery-marquee 52s linear infinite;
}

.home-gallery-loop__viewport:hover .home-gallery-loop__track {
  animation-play-state: paused;
}

.home-gallery-loop__set {
  display: flex;
  align-items: stretch;
  gap: 1.35rem;
  padding: 0.35rem 0.5rem;
  flex-shrink: 0;
}

/* Referans: kartlar beyaz zemin üzerinde ayrı kutular; ince çerçeve + hafif gölge + altta koyu gradient */
.gallery-card {
  position: relative;
  flex: 0 0 auto;
  width: min(272px, 76vw);
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #e8e8e8;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.07),
    0 1px 2px rgba(0, 0, 0, 0.04);
  isolation: isolate;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.45) 32%,
    rgba(0, 0, 0, 0.12) 52%,
    transparent 72%
  );
}

.gallery-card img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.gallery-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 2.1rem 1rem 1rem;
  font-family: var(--font-sans);
  font-size: clamp(0.88rem, 2vw, 0.97rem);
  font-weight: 700;
  text-align: center;
  color: #fff;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}

.home-gallery-loop__more {
  margin: clamp(1.75rem, 4vw, 2.5rem) 0 0;
  text-align: center;
}

.home-gallery-loop__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff !important;
  background: linear-gradient(
    180deg,
    var(--logo-bronze-light) 0%,
    var(--logo-bronze) 42%,
    var(--logo-bronze-deep) 100%
  );
  box-shadow: 0 6px 18px rgba(104, 34, 0, 0.32);
  transition: filter 0.15s ease, transform 0.15s ease;
}

.home-gallery-loop__cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* Hizmetlerimiz — dairesel görsel + metin (2 sütun) */
.home-services {
  padding: clamp(3rem, 8vw, 5rem) 1.5rem clamp(3.5rem, 9vw, 6rem);
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.home-services__inner {
  max-width: min(920px, 100%);
  margin: 0 auto;
}

.home-services__head {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 2.75rem);
}

.home-services__title {
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 3.5vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #161616;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.home-services__intro {
  margin: 0 auto;
  max-width: 38rem;
  font-size: clamp(0.9rem, 2vw, 1.02rem);
  line-height: 1.7;
  color: #5a5a5a;
}

.home-services__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.75rem, 4.5vw, 2.5rem) clamp(1.85rem, 4vw, 2.85rem);
}

.home-services__item {
  display: flex;
  align-items: center;
  gap: 1.1rem 1.25rem;
  text-align: left;
}

.home-services__thumb {
  flex: 0 0 auto;
  width: clamp(92px, 23vw, 118px);
  height: clamp(92px, 23vw, 118px);
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(145deg, #ececec 0%, #f7f7f7 100%);
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.1),
    0 2px 6px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.home-services__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-services__body {
  min-width: 0;
}

.home-services__name {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  font-weight: 600;
  color: #161616;
  margin: 0 0 0.4rem;
  line-height: 1.25;
}

.home-services__desc {
  margin: 0;
  font-size: clamp(0.84rem, 1.8vw, 0.9375rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.58;
  color: #6f6f6f;
}

.home-services__more {
  margin: clamp(2.25rem, 5vw, 3rem) 0 0;
  text-align: center;
}

.home-services__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff !important;
  background: linear-gradient(
    180deg,
    var(--logo-bronze-light) 0%,
    var(--logo-bronze) 42%,
    var(--logo-bronze-deep) 100%
  );
  box-shadow: 0 6px 18px rgba(104, 34, 0, 0.32);
  transition: filter 0.15s ease, transform 0.15s ease;
}

.home-services__cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .home-services__grid {
    grid-template-columns: 1fr;
  }
}

/* Misafir yorumları — yatay kaydırma + kenarlarda beyaza solma */
.home-testimonials {
  --home-t-fade: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(3.5rem, 9vw, 6rem);
  background: var(--home-t-fade);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.home-testimonials__intro {
  max-width: 38rem;
  margin: 0 auto clamp(1.75rem, 4vw, 2.5rem);
  padding: 0 1.5rem;
  text-align: center;
}

.home-testimonials__star-ic {
  display: flex;
  justify-content: center;
  color: var(--logo-bronze);
  margin-bottom: 0.75rem;
}

.home-testimonials__title {
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #161616;
  margin: 0 0 1rem;
  line-height: 1.25;
}

.home-testimonials__lead {
  margin: 0;
  font-size: clamp(0.9rem, 2vw, 1.02rem);
  line-height: 1.7;
  color: #5a5a5a;
}

.home-testimonials__wrap {
  position: relative;
  width: 100%;
}

.home-testimonials__edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(48px, 11vw, 120px);
  z-index: 2;
  pointer-events: none;
}

.home-testimonials__edge--left {
  left: 0;
  background: linear-gradient(90deg, var(--home-t-fade) 0%, rgba(255, 255, 255, 0) 100%);
}

.home-testimonials__edge--right {
  right: 0;
  background: linear-gradient(270deg, var(--home-t-fade) 0%, rgba(255, 255, 255, 0) 100%);
}

.home-testimonials__viewport {
  position: relative;
  z-index: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-padding-inline: clamp(1rem, 5vw, 2.5rem);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(104, 34, 0, 0.25) transparent;
  padding: 0.35rem 0 0.75rem;
}

.home-testimonials__viewport:focus {
  outline: none;
}

.home-testimonials__viewport:focus-visible {
  outline: 2px solid rgba(104, 34, 0, 0.35);
  outline-offset: 4px;
}

.home-testimonials__rail {
  display: flex;
  align-items: stretch;
  gap: 1.15rem;
  width: max-content;
  padding: 0.5rem clamp(1rem, 4vw, 3rem) 1rem;
}

/* Yorum kartı: hafif çerçeve + yumuşak gölge, ortalanmış (referans) */
.t-card {
  scroll-snap-align: center;
  flex: 0 0 auto;
  width: min(300px, 86vw);
  margin: 0;
  padding: 1.5rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 26px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow:
    0 4px 22px rgba(0, 0, 0, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.04);
}

.t-card__name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.02rem;
  color: #555;
  line-height: 1.3;
  margin: 0 0 0.7rem;
}

.t-card__text {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #777;
}

.t-card__stars {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #d9a52b;
}

.t-card__stars-empty {
  color: #d0d0d0;
}

@media (prefers-reduced-motion: reduce) {
  .home-testimonials__viewport {
    scroll-snap-type: none;
  }

  .home-gallery-loop__track--forward {
    animation: none;
  }

  .home-gallery-loop__viewport {
    overflow: visible;
  }

  .home-gallery-loop__track {
    flex-wrap: wrap;
    justify-content: center;
    width: 100% !important;
    transform: none !important;
  }

  .home-gallery-loop__set[aria-hidden="true"] {
    display: none;
  }
}

@media (max-width: 900px) {
  .feature-slice {
    grid-template-columns: 1fr;
    padding: clamp(2rem, 5vw, 2.75rem) 0;
  }

  .feature-slice--flip .feature-slice__media,
  .feature-slice--flip .feature-slice__body {
    order: unset;
  }

  .home-spotlight__grid {
    grid-template-columns: 1fr;
  }

  .home-spotlight__media {
    order: -1;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: #fff;
  z-index: 100;
}

@media (max-width: 900px) {
  /* Kart viewport’tan taşınca kesilmesin; sayfa kaydırılabilir */
  .page-home .hero {
    overflow: visible;
  }

  /* Negatif inset + scale, taşan blur ile yatay kaydırmaya yol açıyordu (html/body overflow-x ile birlikte) */
  .hero-bg {
    inset: 0;
    transform: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 5.5rem;
    align-content: start;
    justify-items: center;
    align-items: start;
  }

  .page-home .hero-grid {
    padding-top: max(0.35rem, env(safe-area-inset-top, 0px));
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
  }

  .hero-map {
    justify-self: stretch;
    max-width: none;
    order: 3;
  }

  .hero-card {
    order: 1;
    max-width: min(420px, 100%);
  }
}

/* Dar mobil: kart tek bakışta sığsın, iç boşluklar sıkı */
@media (max-width: 640px) {
  .page-home .hero-grid {
    padding-top: max(0.2rem, env(safe-area-inset-top, 0px));
  }

  .hero-card {
    padding: 1.35rem 1.15rem 1.1rem;
    border-radius: 22px;
  }

  .hero-logo {
    max-height: 86px;
    width: min(180px, 72vw);
    margin-bottom: 0.45rem;
  }

  .hero-kicker {
    margin-bottom: 0.35rem;
    font-size: 0.9375rem;
  }

  .hero-card__title {
    margin-bottom: 0.65rem;
    font-size: clamp(1.1rem, 4.5vw, 1.35rem);
    line-height: 1.32;
  }

  .hero-card .intro {
    margin-bottom: 0.9rem;
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .btn-cta {
    padding: 0.8rem 1.1rem;
    font-size: 0.875rem;
  }

  .t-carousel {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    min-height: 0;
  }

  .t-stars {
    margin-top: 0.45rem;
  }

  .t-dots {
    margin-top: 0.55rem;
  }

  .hero-areas {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
  }

  .loc-btn {
    margin-top: 0.55rem;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .hero-card {
    padding: 1.2rem 1rem 1rem;
    border-radius: 20px;
  }
}

/* —— Alt bilgi (koyu, üst köşeler yuvarlak) —— */
.site-footer {
  margin-top: 0;
  background: linear-gradient(180deg, #161310 0%, #0c0b09 100%);
  color: rgba(255, 255, 255, 0.88);
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.18);
}

.site-footer__inner {
  max-width: min(1180px, 94vw);
  margin: 0 auto;
  padding: clamp(2.75rem, 6vw, 3.75rem) 1.25rem clamp(1.75rem, 4vw, 2.25rem);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}

.site-footer__logo {
  display: inline-block;
  line-height: 0;
  margin-bottom: 0.65rem;
}

.site-footer__logo img {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.site-footer__title {
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 3vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 0.75rem;
}

.site-footer__lead {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 28rem;
}

.site-footer__contact {
  margin: 0 0 1.35rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.site-footer__contact-line {
  display: block;
}

.site-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff !important;
  background: linear-gradient(
    180deg,
    var(--logo-bronze-light) 0%,
    var(--logo-bronze) 42%,
    var(--logo-bronze-deep) 100%
  );
  box-shadow: 0 8px 22px rgba(104, 34, 0, 0.45);
  transition: filter 0.15s ease, transform 0.15s ease;
}

.site-footer__cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.site-footer__nav-title {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1rem;
}

.site-footer__nav-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
}

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

.site-footer__list li {
  margin-bottom: 0.55rem;
}

.site-footer__list a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.15s ease;
}

.site-footer__list a:hover {
  color: var(--gold);
}

.site-footer__list a[aria-current="page"] {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer__list--plain li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__list--plain a {
  color: var(--gold);
  font-weight: 600;
}

.site-footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(2.25rem, 5vw, 2.75rem);
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.site-footer__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #1a1a1a;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.site-footer__social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .site-footer__nav-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .site-footer {
    border-radius: 24px 24px 0 0;
  }

  .site-footer__nav-cols {
    grid-template-columns: 1fr;
  }

  .site-footer__bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* —— Hakkımızda (iç sayfa) —— */
body.page-inner {
  background: #ffffff;
}

.about-page {
  padding-bottom: 0;
}

.about-hero {
  position: relative;
  min-height: min(52vh, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(5.5rem, 14vw, 7.5rem) 1.5rem clamp(2.75rem, 7vw, 4rem);
}

.about-hero__bg {
  position: absolute;
  inset: -10px;
  z-index: 0;
  background:
    linear-gradient(115deg, rgba(18, 14, 11, 0.88) 0%, rgba(18, 14, 11, 0.58) 48%, rgba(30, 22, 16, 0.45) 100%),
    url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=1920&q=85") center/cover no-repeat;
  filter: blur(4px);
  transform: scale(1.05);
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  text-align: center;
}

.about-hero__title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5.2vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.15rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.about-hero__lead {
  margin: 0;
  font-size: clamp(0.95rem, 2.15vw, 1.0625rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

.prices-page {
  padding-bottom: 0;
}

/* Masaj fiyatları — hero arka planı (masaj masası / seans atmosferi) */
.prices-hero .about-hero__bg {
  background:
    linear-gradient(115deg, rgba(18, 14, 11, 0.88) 0%, rgba(18, 14, 11, 0.58) 48%, rgba(30, 22, 16, 0.45) 100%),
    url("https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?w=1920&q=85") center 42% / cover no-repeat;
}

.prices-content {
  background: #faf9f7;
  padding: clamp(2.75rem, 7vw, 4rem) 1.5rem clamp(3rem, 8vw, 5rem);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.prices-content__inner {
  max-width: min(760px, 100%);
  margin: 0 auto;
}

.prices-content__title {
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 3.2vw, 1.65rem);
  font-weight: 600;
  color: #161616;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  text-align: center;
}

.prices-content__intro {
  margin: 0 auto 2rem;
  max-width: 40rem;
  text-align: center;
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.72;
  color: #5a5a5a;
}

.prices-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.prices-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: clamp(0.875rem, 1.8vw, 0.9375rem);
}

.prices-table thead {
  background: linear-gradient(
    180deg,
    rgba(180, 120, 70, 0.12) 0%,
    rgba(180, 120, 70, 0.06) 100%
  );
}

.prices-table th,
.prices-table td {
  padding: 0.95rem 1.15rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.prices-table th {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.prices-table tbody tr:last-child td {
  border-bottom: none;
}

.prices-table tbody tr:hover td {
  background: rgba(180, 120, 70, 0.04);
}

.prices-table__contact {
  font-weight: 600;
  color: var(--logo-bronze-deep);
  white-space: nowrap;
}

.prices-content__note {
  margin: 1.5rem 0 0;
  font-size: clamp(0.86rem, 1.8vw, 0.9375rem);
  line-height: 1.65;
  color: #6f6f6f;
  text-align: center;
}

.prices-content__note a {
  color: var(--logo-bronze-deep);
  font-weight: 600;
}

.prices-content__note a:hover {
  text-decoration: underline;
}

.prices-content__cta-wrap {
  margin: 1.75rem 0 0;
  text-align: center;
}

.prices-content__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff !important;
  background: linear-gradient(
    180deg,
    var(--logo-bronze-light) 0%,
    var(--logo-bronze) 42%,
    var(--logo-bronze-deep) 100%
  );
  box-shadow: 0 6px 18px rgba(104, 34, 0, 0.32);
  transition: filter 0.15s ease, transform 0.15s ease;
}

.prices-content__cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* Hizmetlerimiz */
.services-page {
  padding-bottom: 0;
}

.services-hero .about-hero__bg {
  background:
    linear-gradient(115deg, rgba(18, 14, 11, 0.88) 0%, rgba(18, 14, 11, 0.58) 48%, rgba(30, 22, 16, 0.45) 100%),
    url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=1920&q=85") center 40% / cover no-repeat;
}

.services-intro {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 3.5rem) 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.services-intro__inner {
  max-width: min(40rem, 100%);
  margin: 0 auto;
  text-align: center;
}

.services-intro__text {
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.0625rem);
  line-height: 1.78;
  color: #5a5a5a;
}

.services-catalog {
  background: #faf9f7;
  padding: clamp(2.5rem, 7vw, 4rem) 1.5rem clamp(3rem, 8vw, 5rem);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.services-catalog__inner {
  max-width: min(960px, 100%);
  margin: 0 auto;
}

.services-catalog__title {
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 3.2vw, 1.65rem);
  font-weight: 600;
  color: #161616;
  margin: 0 0 1.75rem;
  letter-spacing: -0.03em;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 1.75rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.09);
  transform: translateY(-2px);
}

.service-card__media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ececec;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card__body {
  padding: 1.25rem 1.35rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__name {
  font-family: var(--font-sans);
  font-size: clamp(1.02rem, 2.2vw, 1.125rem);
  font-weight: 600;
  color: #161616;
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.service-card__desc {
  margin: 0;
  font-size: clamp(0.86rem, 1.8vw, 0.9375rem);
  line-height: 1.62;
  color: #5f5f5f;
  flex: 1;
}

.service-card__meta {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  color: #888;
  line-height: 1.5;
}

.service-card__meta li {
  position: relative;
  padding-left: 1rem;
}

.service-card__meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--logo-bronze);
  opacity: 0.75;
}

.services-note {
  max-width: min(40rem, 100%);
  margin: clamp(2rem, 5vw, 2.75rem) auto 0;
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  background: rgba(180, 120, 70, 0.08);
  border: 1px solid rgba(104, 34, 0, 0.12);
  font-size: clamp(0.88rem, 1.9vw, 0.95rem);
  line-height: 1.65;
  color: #4a4a4a;
  text-align: center;
}

.services-note a {
  color: var(--logo-bronze-deep);
  font-weight: 600;
}

.services-note a:hover {
  text-decoration: underline;
}

.services-actions {
  margin-top: clamp(2rem, 5vw, 2.75rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  align-items: center;
}

.services-actions__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.45rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.services-actions__btn--primary {
  color: #fff !important;
  background: linear-gradient(
    180deg,
    var(--logo-bronze-light) 0%,
    var(--logo-bronze) 42%,
    var(--logo-bronze-deep) 100%
  );
  box-shadow: 0 6px 18px rgba(104, 34, 0, 0.32);
}

.services-actions__btn--primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.services-actions__btn--ghost {
  color: var(--logo-bronze-deep) !important;
  background: #fff;
  border: 1px solid rgba(104, 34, 0, 0.28);
}

.services-actions__btn--ghost:hover {
  background: rgba(180, 120, 70, 0.06);
}

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

/* Galeri */
.gallery-page {
  padding-bottom: 0;
}

.gallery-hero .about-hero__bg {
  background:
    linear-gradient(115deg, rgba(18, 14, 11, 0.88) 0%, rgba(18, 14, 11, 0.58) 48%, rgba(30, 22, 16, 0.45) 100%),
    url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1920&q=85") center / cover no-repeat;
}

.gallery-content {
  background: #faf9f7;
  padding: clamp(2.5rem, 7vw, 4rem) 1.5rem clamp(3rem, 8vw, 5rem);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.gallery-content__inner {
  max-width: min(1120px, 100%);
  margin: 0 auto;
}

.gallery-content__lead {
  margin: 0 auto clamp(1.75rem, 4vw, 2.5rem);
  max-width: 40rem;
  text-align: center;
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.72;
  color: #5a5a5a;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.gallery-tile {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #e8e8e8;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  isolation: isolate;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.2) 42%, transparent 68%);
}

.gallery-tile img {
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.gallery-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.35rem 1rem 1rem;
  font-family: var(--font-sans);
  font-size: clamp(0.82rem, 1.8vw, 0.92rem);
  font-weight: 600;
  text-align: center;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.gallery-grid__item--wide {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid__item--wide {
    grid-column: span 2;
  }
}

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

  .gallery-grid__item--wide {
    grid-column: span 1;
  }
}

.gallery-bottom {
  background: #ffffff;
  padding: clamp(2rem, 5vw, 2.75rem) 1.5rem clamp(2.5rem, 7vw, 4rem);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.gallery-bottom__inner {
  max-width: min(36rem, 100%);
  margin: 0 auto;
}

.gallery-bottom__text {
  margin: 0 0 1.25rem;
  font-size: clamp(0.88rem, 1.9vw, 0.97rem);
  line-height: 1.65;
  color: #6f6f6f;
}

.gallery-bottom__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.45rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff !important;
  background: linear-gradient(
    180deg,
    var(--logo-bronze-light) 0%,
    var(--logo-bronze) 42%,
    var(--logo-bronze-deep) 100%
  );
  box-shadow: 0 6px 18px rgba(104, 34, 0, 0.32);
  transition: filter 0.15s ease, transform 0.15s ease;
}

.gallery-bottom__cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* Blog — liste ve yazı */
.blog-page {
  padding-bottom: 0;
}

.blog-hero .about-hero__bg {
  background:
    linear-gradient(115deg, rgba(18, 14, 11, 0.88) 0%, rgba(18, 14, 11, 0.58) 48%, rgba(30, 22, 16, 0.45) 100%),
    url("https://images.unsplash.com/photo-1519823551278-64ac92734fb1?w=1920&q=85") center / cover no-repeat;
}

.blog-listing {
  background: #faf9f7;
  padding: clamp(2.5rem, 7vw, 4rem) 1.5rem clamp(3rem, 8vw, 5rem);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-listing__inner {
  max-width: min(1000px, 100%);
  margin: 0 auto;
}

.blog-listing__intro {
  margin: 0 auto 2rem;
  max-width: 40rem;
  text-align: center;
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.72;
  color: #5a5a5a;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 1.75rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-card {
  margin: 0;
  height: 100%;
}

.blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-card__link:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.blog-card__media {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e5e5e5;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__body {
  padding: 1.2rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__meta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--logo-bronze-deep);
  margin-bottom: 0.45rem;
}

.blog-card__title {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 600;
  color: #161616;
  margin: 0 0 0.65rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.blog-card__excerpt {
  margin: 0 0 1rem;
  font-size: clamp(0.86rem, 1.8vw, 0.92rem);
  line-height: 1.58;
  color: #5f5f5f;
  flex: 1;
}

.blog-card__more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--logo-bronze-deep);
}

.blog-card__link:hover .blog-card__more {
  text-decoration: underline;
}

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

.post-page {
  padding-bottom: 0;
}

.post-hero {
  padding: clamp(4.5rem, 12vw, 6rem) 1.5rem clamp(2rem, 5vw, 3rem);
  background: linear-gradient(180deg, #faf9f7 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.post-hero__inner {
  max-width: min(42rem, 100%);
  margin: 0 auto;
}

.post-breadcrumb {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: #888;
}

.post-breadcrumb a {
  color: var(--logo-bronze-deep);
  font-weight: 500;
}

.post-breadcrumb a:hover {
  text-decoration: underline;
}

.post-hero__title {
  font-family: var(--font-sans);
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  font-weight: 700;
  color: #161616;
  margin: 0 0 0.75rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.post-hero__meta {
  margin: 0;
  font-size: 0.9rem;
  color: #6f6f6f;
}

.post-article {
  padding: clamp(2rem, 6vw, 3rem) 1.5rem clamp(3rem, 8vw, 5rem);
  background: #ffffff;
}

.post-article__inner {
  max-width: min(42rem, 100%);
  margin: 0 auto;
}

.post-content {
  font-size: clamp(0.95rem, 2vw, 1.0625rem);
  line-height: 1.82;
  color: #3a3a3a;
}

.post-content h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2.8vw, 1.35rem);
  font-weight: 600;
  color: #161616;
  margin: 2rem 0 0.85rem;
  line-height: 1.35;
}

.post-content h2:first-child {
  margin-top: 0;
}

.post-content p {
  margin: 0 0 1.1rem;
}

.post-content ul {
  margin: 0 0 1.1rem;
  padding-left: 1.35rem;
}

.post-content li {
  margin-bottom: 0.4rem;
}

.post-content strong {
  font-weight: 600;
  color: #222;
}

.post-related {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.post-related__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: #161616;
}

.post-related ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.post-related li {
  margin-bottom: 0.5rem;
}

.post-related a {
  color: var(--logo-bronze-deep);
  font-weight: 500;
}

.post-related a:hover {
  text-decoration: underline;
}

.post-back {
  margin-top: 2rem;
}

.post-back a {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--logo-bronze-deep) !important;
}

.post-back a:hover {
  text-decoration: underline;
}

/* İletişim */
.contact-page {
  padding-bottom: 0;
}

.contact-hero .about-hero__bg {
  background:
    linear-gradient(115deg, rgba(18, 14, 11, 0.88) 0%, rgba(18, 14, 11, 0.58) 48%, rgba(30, 22, 16, 0.45) 100%),
    url("https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1920&q=85") center 45% / cover no-repeat;
}

.contact-main {
  background: #faf9f7;
  padding: clamp(2.5rem, 7vw, 4rem) 1.5rem clamp(3rem, 8vw, 5rem);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-main__inner {
  max-width: min(1040px, 100%);
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info__card {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.contact-info__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--logo-bronze-deep);
  margin: 0 0 0.35rem;
}

.contact-info__value {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #333;
}

.contact-info__value a {
  color: var(--logo-bronze-deep);
  font-weight: 600;
}

.contact-info__value a:hover {
  text-decoration: underline;
}

.contact-info__note {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #777;
}

.contact-hours__global-note {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #555;
}

.contact-hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  line-height: 1.45;
}

.contact-hours-table th {
  text-align: left;
  font-weight: 600;
  color: #2a2a2a;
  padding: 0.45rem 0.65rem 0.45rem 0;
  vertical-align: top;
  width: 38%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-hours-table td {
  padding: 0.45rem 0 0.45rem 0.35rem;
  color: #333;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-hours-table tr:last-child th,
.contact-hours-table tr:last-child td {
  border-bottom: none;
}

.contact-form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: clamp(1.35rem, 3vw, 1.75rem);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.contact-form__title {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1.15rem;
  color: #161616;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 560px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #3a3a3a;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  color: #222;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(104, 34, 0, 0.45);
  box-shadow: 0 0 0 3px rgba(104, 34, 0, 0.12);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form__check {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.6rem !important;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #555;
}

.contact-form__check input {
  width: auto;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-form__submit {
  margin-top: 0.25rem;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.65rem;
  border: none;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(
    180deg,
    var(--logo-bronze-light) 0%,
    var(--logo-bronze) 42%,
    var(--logo-bronze-deep) 100%
  );
  box-shadow: 0 6px 18px rgba(104, 34, 0, 0.32);
  transition: filter 0.15s ease, transform 0.15s ease;
}

.contact-form__submit:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.contact-form__hint {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #888;
}

.contact-form__thanks {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(46, 125, 50, 0.1);
  border: 1px solid rgba(46, 125, 50, 0.25);
  font-size: 0.9rem;
  color: #1b5e20;
}

.contact-map {
  margin-top: clamp(2rem, 5vw, 3rem);
}

.contact-map__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.85rem;
  color: #161616;
}

.contact-map__frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  aspect-ratio: 16 / 7;
  min-height: 220px;
}

.contact-map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-map__after {
  margin-top: 0.75rem;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

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

.about-vision {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 4.75rem) 1.5rem;
}

.about-vision__inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.about-vision__logo {
  width: min(200px, 52vw);
  height: auto;
  margin: 0 auto 1.5rem;
}

.about-vision__title {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 3.5vw, 1.9rem);
  font-weight: 600;
  color: #161616;
  margin: 0 0 1.35rem;
  line-height: 1.2;
}

.about-vision__text {
  margin: 0 0 1.2rem;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.78;
  color: #5a5a5a;
}

.about-vision__text:last-child {
  margin-bottom: 0;
}

.about-gallery-strip {
  background: #ffffff;
  padding: 0 0 clamp(2.5rem, 6vw, 3.75rem);
}

.about-gallery-strip__wrap {
  max-width: min(1200px, 94vw);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 1.5rem);
}

.about-gallery-strip__viewport {
  overflow: visible;
}

.about-gallery-strip__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.15rem);
  width: 100%;
  padding: 0.35rem 0 0.75rem;
}

.about-gallery-strip__fig {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  isolation: isolate;
}

@media (max-width: 900px) {
  .about-gallery-strip__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .about-gallery-strip__row {
    grid-template-columns: 1fr;
  }
}

.about-gallery-strip__fig::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.35) 38%,
    transparent 62%
  );
}

.about-gallery-strip__fig img {
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.about-gallery-strip__fig figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.15rem 0.85rem 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(0.86rem, 2vw, 0.95rem);
  text-align: center;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.about-discover {
  background: #faf9f7;
  padding: clamp(3rem, 8vw, 5rem) 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.about-discover__inner {
  max-width: min(1100px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.about-discover__icon {
  display: block;
  color: var(--logo-bronze);
  margin-bottom: 0.85rem;
}

.about-discover__title {
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 3.2vw, 1.85rem);
  font-weight: 600;
  color: #161616;
  margin: 0 0 1rem;
  line-height: 1.25;
}

.about-discover__text {
  margin: 0 0 1.5rem;
  font-size: clamp(0.9375rem, 2vw, 1.05rem);
  line-height: 1.75;
  color: #5a5a5a;
}

.about-discover__tags {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--logo-bronze);
}

.about-discover__tags li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.about-discover__tags li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.about-discover__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff !important;
  background: linear-gradient(
    180deg,
    var(--logo-bronze-light) 0%,
    var(--logo-bronze) 42%,
    var(--logo-bronze-deep) 100%
  );
  box-shadow: 0 6px 18px rgba(104, 34, 0, 0.35);
  transition: filter 0.15s ease, transform 0.15s ease;
}

.about-discover__cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.about-discover__poster {
  position: relative;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.about-discover__poster img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.about-discover__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.about-discover__poster-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}

@media (max-width: 900px) {
  .about-discover__inner {
    grid-template-columns: 1fr;
  }

  .about-discover__media {
    order: -1;
  }
}

/* —— SEO yerel açılış sayfaları (Bakırköy, Ataköy, Florya vb.) —— */
.seo-local-hero--bakirkoy-masaj .about-hero__bg {
  background:
    linear-gradient(115deg, rgba(18, 14, 11, 0.9) 0%, rgba(18, 14, 11, 0.55) 50%, rgba(30, 22, 16, 0.48) 100%),
    url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=1920&q=85") center 40% / cover no-repeat;
}

.seo-local-hero--atakoy-masaj .about-hero__bg {
  background:
    linear-gradient(120deg, rgba(12, 18, 24, 0.9) 0%, rgba(18, 14, 11, 0.55) 55%, rgba(20, 28, 36, 0.5) 100%),
    url("https://images.unsplash.com/photo-1571902943122-507ec2618e8f?w=1920&q=85") center 38% / cover no-repeat;
}

.seo-local-hero--florya-masaj .about-hero__bg {
  background:
    linear-gradient(115deg, rgba(18, 22, 28, 0.88) 0%, rgba(18, 14, 11, 0.52) 50%, rgba(24, 30, 22, 0.45) 100%),
    url("https://images.unsplash.com/photo-1519823551276-4f4e28139c3d?w=1920&q=85") center 42% / cover no-repeat;
}

.seo-local-hero--bakirkoy-salon .about-hero__bg {
  background:
    linear-gradient(115deg, rgba(18, 14, 11, 0.9) 0%, rgba(40, 32, 24, 0.5) 100%),
    url("https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?w=1920&q=85") center 35% / cover no-repeat;
}

.seo-local-hero--bakirkoy-masozleri .about-hero__bg {
  background:
    linear-gradient(115deg, rgba(22, 16, 12, 0.9) 0%, rgba(18, 14, 11, 0.58) 48%, rgba(32, 24, 18, 0.48) 100%),
    url("https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=1920&q=85") center 40% / cover no-repeat;
}

.seo-local-hero--bakirkoy-masozara .about-hero__bg {
  background:
    linear-gradient(118deg, rgba(18, 14, 11, 0.92) 0%, rgba(74, 23, 0, 0.35) 100%),
    url("https://images.unsplash.com/photo-1540555700478-4c2897a132dd?w=1920&q=85") center 45% / cover no-repeat;
}

.seo-landing-section {
  background: #faf9f7;
  padding: clamp(2.5rem, 6vw, 3.75rem) 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.seo-landing-section--alt {
  background: #fff;
}

.seo-landing-section__inner {
  max-width: min(820px, 100%);
  margin: 0 auto;
}

.seo-landing-section__title {
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 3vw, 1.6rem);
  font-weight: 600;
  color: var(--logo-bronze-deep);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.seo-landing-section__text {
  margin: 0 0 1rem;
  font-size: clamp(0.92rem, 2vw, 1rem);
  line-height: 1.78;
  color: #4b5563;
}

.seo-landing-section__text:last-child {
  margin-bottom: 0;
}

.seo-landing-cards {
  background: #f3f1ed;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.seo-landing-cards__inner {
  max-width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 1.5rem);
}

@media (max-width: 820px) {
  .seo-landing-cards__inner {
    grid-template-columns: 1fr;
  }
}

.seo-landing-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.35rem 1.4rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.seo-landing-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(201, 169, 98, 0.2), rgba(104, 34, 0, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--logo-bronze-deep);
  margin-bottom: 0.85rem;
}

.seo-landing-card__title {
  font-size: 1.02rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
}

.seo-landing-card__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.62;
  color: #5a5a5a;
}

.seo-landing-cta {
  padding: clamp(2.5rem, 6vw, 3.5rem) 1.5rem;
  background: linear-gradient(180deg, #faf9f7 0%, #f0ebe4 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.seo-landing-cta__inner {
  max-width: min(560px, 100%);
  margin: 0 auto;
}

.seo-landing-cta__title {
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 2.8vw, 1.45rem);
  font-weight: 600;
  color: var(--logo-bronze-deep);
  margin: 0 0 0.65rem;
}

.seo-landing-cta__text {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4b5563;
}

.seo-landing-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff !important;
  background: linear-gradient(
    180deg,
    var(--logo-bronze-light) 0%,
    var(--logo-bronze) 42%,
    var(--logo-bronze-deep) 100%
  );
  box-shadow: 0 6px 18px rgba(104, 34, 0, 0.35);
  transition: filter 0.15s ease, transform 0.15s ease;
}

.seo-landing-cta__btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.seo-landing-related {
  padding: clamp(2rem, 5vw, 2.75rem) 1.5rem 3rem;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.seo-landing-related__inner {
  max-width: min(900px, 100%);
  margin: 0 auto;
}

.seo-landing-related__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--logo-bronze-deep);
  margin: 0 0 1rem;
}

.seo-landing-related__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.seo-landing-related__nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--logo-bronze);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seo-landing-related__nav a:hover {
  color: var(--logo-bronze-deep);
}

/* —— İletişim: çoklu telefon blokları —— */
.contact-phone-block {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-phone-block:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.contact-phone-block__label {
  margin: 0 0 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--logo-bronze);
}

/* —— Blog: liste bölüm başlıkları —— */
.blog-section__title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--logo-bronze-deep);
}

.blog-section__title--spaced {
  margin-top: clamp(2rem, 5vw, 2.75rem);
  padding-top: clamp(1.5rem, 4vw, 2rem);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* —— Blog: tek yazı sayfası —— */
.blog-article {
  width: min(820px, 94vw);
  margin: 0 auto;
  padding: clamp(5.5rem, 12vw, 7rem) 1rem clamp(3rem, 8vw, 4rem);
}

.blog-article__crumb {
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.blog-article__crumb a {
  color: var(--logo-bronze);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-article__meta {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.blog-article__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.65rem, 4vw, 2.1rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.blog-article__body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
}

.blog-article__body h2,
.blog-article__body h3 {
  color: var(--ink);
  margin: 1.5rem 0 0.75rem;
  font-weight: 700;
}

.blog-article__body p {
  margin: 0 0 1rem;
}

.blog-article__body ul,
.blog-article__body ol {
  margin: 0 0 1rem 1.1rem;
  padding: 0;
}

.blog-article__body a {
  color: var(--logo-bronze);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-article__back {
  margin: 2rem 0 0;
  font-size: 0.95rem;
}

.blog-article__back a {
  color: var(--logo-bronze);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* —— Hizmet bölgeleri hub (/hizmet-bolgesi/) —— */
.region-hub-hero {
  position: relative;
  min-height: min(44vh, 440px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(5rem, 14vw, 6.5rem) 1.5rem clamp(2.5rem, 6vw, 3.5rem);
  overflow: hidden;
}

.region-hub-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(155deg, #060606 0%, #14110e 42%, #0a0908 100%);
}

.region-hub-hero__inner {
  position: relative;
  z-index: 1;
  max-width: min(900px, 100%);
  text-align: center;
}

.region-hub-hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 5vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #f4f4f4;
  text-shadow:
    0.45px 0 0 rgba(0, 220, 255, 0.35),
    -0.45px 0 0 rgba(255, 90, 90, 0.32);
}

.region-hub-hero__lead {
  margin: 0;
  font-size: clamp(0.95rem, 2.5vw, 1.06rem);
  line-height: 1.75;
  color: rgba(245, 245, 245, 0.84);
}

.region-hub-cards .seo-landing-cards__inner {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.region-hub-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.region-hub-card:hover {
  transform: translateY(-4px);
}

.region-hub-card:hover .seo-landing-card {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
  border-color: rgba(104, 34, 0, 0.22);
}

.region-hub-card__article {
  height: 100%;
}

.region-hub-card__more {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--logo-bronze);
}

.region-hub-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem 1rem;
  color: #6b7280;
  font-size: 0.95rem;
}

/* —— Mobil iletişim FAB (sağ alt: sohbet → WhatsApp + ara) —— */
@media (max-width: 900px) {
  .mob-fab {
    position: fixed;
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    z-index: 120;
    font-family: inherit;
  }

  .mob-fab__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(74, 23, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s;
    pointer-events: none;
  }

  .mob-fab.is-open .mob-fab__backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mob-fab__actions {
    position: absolute;
    right: 0;
    bottom: calc(3.75rem + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.7rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mob-fab__actions[hidden] {
    display: none !important;
  }

  .mob-fab__action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 6px 18px rgba(104, 34, 0, 0.32);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  }

  .mob-fab__action:active {
    transform: scale(0.96);
  }

  /* WhatsApp: yeşil tanınabilirlik + altın çerçeve (kurumsal vurgu) */
  .mob-fab__action--wa {
    background: linear-gradient(180deg, #2eb85c 0%, #1fa855 50%, #128c4a 100%);
    color: #fff;
    box-shadow:
      0 0 0 2px var(--gold),
      0 6px 20px rgba(104, 34, 0, 0.28);
  }

  .mob-fab__action--wa:hover {
    filter: brightness(1.05);
  }

  /* Telefon: altın gradyan (Masözara paleti) */
  .mob-fab__action--tel {
    background: linear-gradient(180deg, #dcc078 0%, var(--gold) 38%, var(--gold-dark) 100%);
    color: var(--logo-bronze-deep);
    box-shadow: 0 6px 20px rgba(168, 134, 61, 0.42);
  }

  .mob-fab__action--tel .mob-fab__icon {
    color: var(--logo-bronze-deep);
  }

  .mob-fab__action--tel:hover {
    filter: brightness(1.06);
  }

  /* Ana düğme: üst menü CTA ile aynı bronz gradyan */
  .mob-fab__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.65rem;
    height: 3.65rem;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(
      180deg,
      var(--logo-bronze-light) 0%,
      var(--logo-bronze) 42%,
      var(--logo-bronze-deep) 100%
    );
    box-shadow: 0 6px 18px rgba(104, 34, 0, 0.38);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  }

  .mob-fab__toggle:hover {
    filter: brightness(1.06);
  }

  .mob-fab__toggle:active {
    transform: scale(0.96);
  }

  .mob-fab.is-open .mob-fab__toggle {
    box-shadow: 0 4px 14px rgba(104, 34, 0, 0.34);
  }

  .mob-fab__icon {
    display: block;
    flex-shrink: 0;
  }

  .mob-fab__icon--chat {
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
  }
}

@media (min-width: 901px) {
  .mob-fab {
    display: none !important;
  }
}
