:root {
  --bg: #faf9f7;
  --bg-elevated: #ffffff;
  --gold: #a68b52;
  --gold-soft: #d4c4a0;
  --text: #1a1a1a;
  --text-muted: #5c5c5c;
  --hairline: rgba(26, 26, 26, 0.08);
  --font-ui: "Cormorant Garamond", serif;
  --font-display: "Cormorant Garamond", serif;
  --font-accent: "Cormorant Garamond", serif;
  --success-green: #4a8160;
  --success-green-soft: rgba(228, 241, 231, 0.72);
  --success-green-accent: rgba(74, 129, 96, 0.82);
  --success-text: #2a4534;
  --header-inset-top: calc(env(safe-area-inset-top, 0px) + clamp(1.45rem, 3.5vw, 2.35rem));
  /* Kaydırılmış şerit: hero’daki geniş üst boşluğu korur, scroll’da üstü sıkılaştırır */
  --header-inset-top-scrolled: calc(env(safe-area-inset-top, 0px) + clamp(0.65rem, 1.8vw, 1.2rem));
}

html {
  scroll-padding-top: calc(var(--header-inset-top-scrolled) + 6rem);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-display);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  font-size: 16px;
  line-height: 1.5;
}

/* Mobil/tablet: hiçbir sayfada yatay kaydırma/taşma olmasın (vw + padding birleşimi vb.) */
@media (max-width: 1024px) {
  html {
    overflow-x: clip;
    max-width: 100%;
  }

  body {
    max-width: 100%;
  }

  body.subpage .subpage-main {
    padding-top: calc(var(--header-inset-top-scrolled) + 5.55rem);
    max-width: 100%;
    overflow-x: clip;
  }

  .form-toast {
    max-width: min(360px, calc(100vw - 2rem));
    box-sizing: border-box;
  }

  .form-toast.is-success {
    min-width: 0;
    max-width: min(440px, calc(100vw - 2rem));
  }

  .hero {
    min-width: 0;
  }

  .welcome-grid,
  .gallery-section__inner,
  .map-section__inner,
  .map-section__stage,
  .firsatlar-interactive__layout {
    min-width: 0;
  }
}

img,
svg,
iframe,
video {
  max-width: 100%;
}

p,
.welcome-body p,
.map-section__lead,
.investment-showcase__body,
.site-footer__lede,
.site-footer__address {
  font-family: var(--font-ui);
  font-size: clamp(0.98rem, 0.3vw + 0.92rem, 1.08rem);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.section-eyebrow,
.hero-eyebrow,
.service-stack__number {
  font-size: clamp(0.74rem, 0.18vw + 0.7rem, 0.86rem);
  letter-spacing: 0.14em;
}

.welcome-heading,
.gallery-section__heading,
.service-stack__heading,
.investment-showcase__heading,
.dual-pillar__title {
  line-height: 1.18;
  letter-spacing: 0.015em;
}

.hero-display {
  line-height: 1.05;
}

body.subpage .subpage-main {
  padding-top: calc(var(--header-inset-top-scrolled) + 7.25rem);
}


.top-nav {
  position: fixed;
  inset: 0;
  width: 100%;
  min-height: 100vh;
  z-index: 60;
  display: block;
  padding: 0;
  background: transparent;
  border: none;
  backdrop-filter: none;
  box-shadow: none;
  pointer-events: none;
}

.top-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  height: 0;
  pointer-events: none;
  background: rgba(250, 249, 247, 0.76);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  opacity: 0;
  transition: height 0.38s ease, opacity 0.32s ease, box-shadow 0.32s ease;
  box-shadow: none;
}

.top-nav.scrolled::before {
  /* Logo + blur şeridi; çizgi logonun altında kalsın */
  height: calc(var(--header-inset-top-scrolled) + 7.25rem);
  opacity: 1;
  box-shadow: 0 1px 0 rgba(26, 26, 26, 0.06);
}

.top-nav.scrolled .brand {
  z-index: 4;
  top: 0;
  height: calc(var(--header-inset-top-scrolled) + 7.25rem);
  left: 50%;
  transform: translateX(-50%);
}

.top-nav.scrolled .nav-ambient {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.top-nav::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -1px;
  height: 0;
  background: transparent;
}

.nav-ambient {
  position: absolute;
  right: 1.4rem;
  top: var(--header-inset-top);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 139, 82, 0.12), rgba(166, 139, 82, 0));
  filter: blur(16px);
  pointer-events: none;
  opacity: 0.65;
}

.brand {
  color: var(--gold);
  text-decoration: none;
  display: inline-grid;
  place-items: center;
  z-index: 2;
  position: relative;
  position: absolute;
  top: var(--header-inset-top);
  left: 50%;
  transform: translateX(-50%);
  pointer-events: auto;
}

.top-nav.nav-menu-open .brand {
  z-index: 58;
}

.brand-logo {
  width: 272px;
  height: 272px;
  object-fit: contain;
  border-radius: 0;
  border: none;
  background: transparent;
  padding: 11px;
  box-shadow: none;
  transition: width 0.35s ease, height 0.35s ease, padding 0.35s ease;
}

.top-nav.scrolled .brand-logo {
  width: 142px;
  height: 142px;
  padding: 7px;
}

.nav-actions {
  position: absolute;
  right: 1.2rem;
  top: var(--header-inset-top);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  pointer-events: auto;
  transition: gap 0.35s ease;
}

.top-nav.scrolled .nav-actions {
  top: var(--header-inset-top-scrolled);
}

.top-nav.nav-menu-open .nav-actions {
  z-index: 58;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 56;
  background: rgba(26, 26, 26, 0.52);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.38s ease,
    visibility 0s linear 0.38s;
}

.top-nav.scrolled.nav-menu-open .nav-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.38s ease,
    visibility 0s linear 0s;
}

.top-nav:not(.scrolled) .nav-actions {
  gap: 0.62rem;
}

.nav-toggle {
  display: inline-flex;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.42em;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.72) rotate(-14deg);
  transform-origin: 50% 50%;
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.34, 1.45, 0.45, 1),
    visibility 0s linear 0.48s;
}

.top-nav.scrolled .nav-toggle {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1) rotate(0deg);
  transition:
    opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.34, 1.5, 0.42, 1),
    visibility 0s linear 0s;
}

.nav-toggle:hover {
  color: var(--gold);
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(200, 162, 93, 0.65);
  outline-offset: 4px;
}

.nav-toggle-bar {
  display: block;
  width: 1.72em;
  min-width: 1.35rem;
  height: 0.11em;
  min-height: 2px;
  border-radius: 0.06em;
  background: currentColor;
  opacity: 0.95;
  transition:
    transform 0.48s cubic-bezier(0.34, 1.25, 0.52, 1),
    opacity 0.32s ease,
    color 0.22s ease;
}

.nav-panel {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.top-nav.scrolled .nav-panel {
  position: fixed;
  right: 0;
  left: auto;
  top: 0;
  width: min(300px, 88vw);
  height: 100vh;
  height: 100dvh;
  max-height: none;
  min-width: unset;
  margin: 0;
  padding: clamp(1.35rem, 3.5vw, 1.85rem) clamp(1.35rem, 4.5vw, 2rem);
  padding-bottom: clamp(1.75rem, 4vh, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  background: #ffffff;
  border: none;
  border-radius: 0;
  box-shadow: -12px 0 40px rgba(26, 26, 26, 0.08);
  z-index: 57;
  transform: translateX(105%);
  opacity: 1;
  visibility: hidden;
  pointer-events: none;
  filter: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    transform 0.46s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.46s;
}

.top-nav.scrolled.nav-menu-open .nav-panel {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  transition:
    transform 0.46s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

.top-nav:not(.scrolled) .nav-panel {
  position: static;
  width: auto;
  height: auto;
  max-height: none;
  padding: 0;
  min-width: unset;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  filter: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  flex-direction: column;
}

.top-nav.scrolled .nav-panel-tagline {
  display: block;
  text-align: right;
}

.top-nav:not(.scrolled) .nav-panel-tagline {
  display: none;
}

.nav-panel-body {
  display: contents;
}

.top-nav.scrolled .nav-panel-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  justify-content: center;
  gap: clamp(0.2rem, 1.8vh, 0.65rem);
  min-height: 0;
}

.top-nav.scrolled .nav-panel .nav-link,
.top-nav.scrolled .nav-panel .lang-btn {
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 2.2vw, 1.05rem);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: right;
  padding: 0.55rem 0;
  color: var(--text);
  border-bottom: none;
}

.top-nav.scrolled .nav-panel .lang-btn {
  justify-content: flex-end;
  align-self: flex-end;
}

.top-nav.scrolled .nav-panel .nav-link:hover,
.top-nav.scrolled .nav-panel .lang-btn:hover {
  color: var(--gold);
}

.top-nav.scrolled .nav-links-stacked.nav-panel {
  gap: 0;
  align-items: stretch;
}

.nav-panel-tagline {
  display: none;
  margin-top: auto;
  padding-top: clamp(1.5rem, 3vh, 2.25rem);
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.nav-weather {
  display: none;
  margin: 0;
  padding: clamp(1.1rem, 2.5vh, 1.65rem) 0 0;
  align-self: flex-end;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: clamp(0.72rem, 1.6vw, 0.84rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.top-nav.scrolled .nav-weather {
  display: inline-flex;
}

.nav-weather__icon {
  display: flex;
  color: var(--gold);
  opacity: 0.9;
}

.nav-weather__icon svg {
  display: block;
}

.nav-weather__text {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

@keyframes navDrawerLinkIn {
  from {
    opacity: 0;
    transform: translate3d(12px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.top-nav.scrolled.nav-menu-open .nav-panel-body>* {
  animation: navDrawerLinkIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.top-nav.scrolled.nav-menu-open .nav-panel-body>*:nth-child(1) {
  animation-delay: 0.05s;
}

.top-nav.scrolled.nav-menu-open .nav-panel-body>*:nth-child(2) {
  animation-delay: 0.1s;
}

.top-nav.scrolled.nav-menu-open .nav-panel-body>*:nth-child(3) {
  animation-delay: 0.15s;
}

.top-nav.scrolled.nav-menu-open .nav-panel-body>*:nth-child(4) {
  animation-delay: 0.2s;
}

.top-nav.scrolled.nav-menu-open .nav-panel-body>*:nth-child(5) {
  animation-delay: 0.24s;
}

.top-nav.scrolled.nav-menu-open .nav-panel-body>*:nth-child(6) {
  animation-delay: 0.28s;
}

.top-nav.scrolled.nav-menu-open .nav-panel-body>*:nth-child(7) {
  animation-delay: 0.32s;
}

.top-nav.scrolled.nav-menu-open .nav-toggle {
  z-index: 59;
}

.top-nav.scrolled.nav-menu-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(calc(0.42em + 0.11em)) rotate(45deg);
}

.top-nav.scrolled.nav-menu-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}

.top-nav.scrolled.nav-menu-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(calc(-1 * (0.42em + 0.11em))) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {

  .nav-toggle,
  .nav-toggle-bar,
  .nav-panel,
  .nav-backdrop,
  .top-nav::before {
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }

  .top-nav.scrolled.nav-menu-open .nav-panel-body>* {
    animation: none !important;
  }

  .top-nav:not(.scrolled).nav-menu-open .nav-panel-body>* {
    animation: none !important;
  }

  .top-nav::before {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.94);
  }
}

.nav-links {
  display: flex;
  align-items: flex-end;
  gap: 0.65rem;
  z-index: 1;
}

.nav-links-stacked {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  pointer-events: auto;
  transition: gap 0.35s ease;
}

.nav-links-stacked .nav-link,
.nav-links-stacked .lang-btn {
  text-align: right;
}

.top-nav:not(.scrolled) .nav-links-stacked {
  gap: 0.62rem;
}

.nav-link,
.lang-btn {
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.48rem 0.9rem;
  cursor: pointer;
  transition:
    color 0.25s ease,
    font-size 0.35s ease,
    padding 0.35s ease,
    min-width 0.35s ease;
  min-width: 0;
  text-align: center;
}

.lang-switch {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.35rem;
}

.lang-switch .lang-btn {
  padding: 0.48rem 0.2rem;
}

.lang-btn.is-active {
  color: var(--gold);
}

.top-nav.scrolled .nav-panel .lang-switch .lang-btn {
  padding: 0.48rem 0.2rem;
}

.top-nav:not(.scrolled) .nav-link,
.top-nav:not(.scrolled) .lang-btn {
  font-size: 0.72rem;
  padding: 0.55rem 0;
  min-width: unset;
  text-align: right;
}

.nav-link:hover,
.lang-btn:hover {
  color: var(--gold);
  background: transparent;
}

.opening {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 22%, var(--bg-elevated), var(--bg) 72%);
  transition: opacity 0.8s ease, visibility 0.8s ease;
  overflow: hidden;
}

.opening.hidden {
  opacity: 0;
  visibility: hidden;
}

.sand-layer {
  position: absolute;
  inset: -10%;
  pointer-events: none;
  background-repeat: repeat;
  mix-blend-mode: multiply;
}

.sand-layer.one {
  opacity: 0.3;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(200, 162, 93, 0.26) 0 1px, transparent 2px),
    radial-gradient(circle at 60% 70%, rgba(210, 178, 123, 0.22) 0 1px, transparent 2px);
  background-size: 140px 140px, 180px 180px;
  animation: sandDriftOne 5s linear infinite;
}

.sand-layer.two {
  opacity: 0.24;
  background-image:
    radial-gradient(circle at 35% 20%, rgba(200, 162, 93, 0.2) 0 1px, transparent 2px),
    radial-gradient(circle at 75% 55%, rgba(200, 162, 93, 0.16) 0 1px, transparent 2px);
  background-size: 120px 120px, 160px 160px;
  animation: sandDriftTwo 7s linear infinite;
}

.sand-layer.three {
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 48% 42%, rgba(210, 178, 123, 0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 12% 78%, rgba(200, 162, 93, 0.14) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 18%, rgba(188, 154, 98, 0.12) 0 1px, transparent 2px);
  background-size: 100px 100px, 150px 150px, 190px 190px;
  animation: sandDriftThree 6.5s linear infinite;
}

.opening-card {
  text-align: center;
  padding: 1.2rem;
  position: relative;
  z-index: 2;
}

.opening-ring {
  width: clamp(64px, 12vw, 110px);
  height: clamp(64px, 12vw, 110px);
  border: 1px solid rgba(212, 176, 106, 0.35);
  border-top-color: rgba(212, 176, 106, 0.95);
  border-radius: 50%;
  animation: spin 1.4s linear infinite;
}

.opening-glow {
  position: absolute;
  width: clamp(180px, 30vw, 380px);
  height: clamp(180px, 30vw, 380px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(200, 162, 93, 0.26), rgba(200, 162, 93, 0));
  filter: blur(10px);
  animation: pulseGlow 1.8s ease-in-out infinite;
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  width: 100%;
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-items: end;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 8vh, 5rem);
  background:
    linear-gradient(180deg, rgba(250, 249, 247, 0.15) 0%, rgba(250, 249, 247, 0.55) 45%, rgba(250, 249, 247, 0.92) 100%),
    url("assets/images/hero-main.webp") center / cover no-repeat,
    var(--bg);
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.35s ease, transform 1.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero.revealed {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  grid-row: 1;
  align-self: center;
  justify-self: center;
  text-align: center;
  max-width: min(38rem, 100%);
  padding: clamp(1.15rem, 3.5vw, 2rem) clamp(1.2rem, 4vw, 2.25rem);
  margin-top: clamp(2.75rem, 6vh, 5.25rem);
  z-index: 2;
  position: relative;
  box-sizing: border-box;
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

.hero-display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.35rem, 7.5vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--gold);
  margin: 0 0 clamp(1.1rem, 2.5vw, 1.65rem);
}

.hero-display-line {
  display: block;
}

.hero-display-line--emph {
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
  opacity: 1;
}

.hero-lede {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  font-weight: 600;
  line-height: 1.55;
  color: var(--gold);
  max-width: 32rem;
  margin: 0 auto;
}

/* GSAP kapalı veya hareketi azalt: doğrudan gövde metin rengi (siyah) */
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow,
  .hero-display,
  .hero-display-line,
  .hero-lede {
    color: var(--text);
  }

  .hero-display-line--emph {
    color: var(--text);
  }
}

.hero-demand-bundle {
  position: absolute;
  left: clamp(0.9rem, 3.2vw, 2rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 59;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: max-content;
  max-width: min(560px, 100%);
}

.hero-demand-form {
  position: relative;
  margin: 0;
  width: min(560px, 100%);
  padding: clamp(0.9rem, 1.8vw, 1.2rem);
  border: 1px solid rgba(166, 139, 82, 0.34);
  border-radius: 1.05rem;
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.9), rgba(248, 243, 232, 0.85));
  box-shadow: 0 16px 32px rgba(20, 22, 24, 0.12);
  backdrop-filter: blur(6px);
  z-index: 2;
}

.hero-demand-form:not(.is-hidden) {
  animation: hero-demand-form-cinematic-in 1.12s cubic-bezier(0.17, 1, 0.32, 1) both;
}

@keyframes hero-demand-form-cinematic-in {
  0% {
    opacity: 0;
    transform: translate3d(calc(-100% - 48px), 22px, 0);
  }

  36% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-demand-form.is-hidden {
  display: none;
}

.hero-demand-form__close {
  top: 0.45rem;
  right: 0.5rem;
}

.hero-demand-form__title {
  color: #2a241b;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-demand-form__note {
  margin-top: 0.4rem;
  margin-bottom: 0.75rem;
  color: #4d4539;
  font-size: 0.96rem;
  line-height: 1.48;
}

.hero-demand-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.52rem;
}

.hero-demand-form__field {
  display: grid;
  gap: 0.25rem;
  text-align: left;
}

.hero-demand-form__field--wide {
  grid-column: 1 / -1;
}

.hero-demand-form__label {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7b6a4c;
}

.hero-demand-form__field input,
.hero-demand-form__field textarea {
  width: 100%;
  min-height: 2.45rem;
  border: 1px solid rgba(166, 139, 82, 0.28);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.45rem 0.6rem;
  color: #201b14;
  font-family: var(--font-ui);
  font-size: 0.94rem;
}

.hero-demand-form__field textarea {
  resize: vertical;
  min-height: 4.4rem;
}

.hero-demand-form__field input::placeholder,
.hero-demand-form__field textarea::placeholder {
  color: #99886c;
}

.hero-demand-form__field input:focus-visible,
.hero-demand-form__field textarea:focus-visible {
  outline: 2px solid rgba(166, 139, 82, 0.38);
  outline-offset: 1px;
  border-color: rgba(166, 139, 82, 0.7);
}

.hero-demand-form__check {
  margin-top: 0.62rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #3c3429;
  font-size: 0.92rem;
  line-height: 1.35;
}

.hero-demand-form__check input {
  margin-top: 0.16rem;
}

.hero-demand-form__check a {
  color: #8f6f38;
  text-decoration: underline;
}

.hero-demand-form__submit {
  margin-top: 0.7rem;
  min-height: 2.35rem;
  width: 100%;
  border: 1px solid rgba(166, 139, 82, 0.95);
  border-radius: 0.58rem;
  background: linear-gradient(135deg, #b0915a 0%, #a68b52 65%, #8d7443 100%);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}

.hero-demand-form__submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

.hero-demand-form__status {
  margin-top: 0.5rem;
  min-height: 1.15rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  line-height: 1.35;
  color: #5d4a2a;
}

.hero-demand-form__status.is-error {
  color: #8f2c2c;
}

.hero-demand-form__status.is-success {
  margin-top: 0.75rem;
  padding: 1.05rem 1.15rem 1.1rem;
  min-height: auto;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.6vw, 1.2rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: var(--success-text);
  text-align: center;
  background:
    linear-gradient(180deg, var(--success-green-soft) 0%, transparent 42%),
    linear-gradient(175deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 232, 0.9));
  border: 1px solid rgba(166, 139, 82, 0.38);
  border-left: 4px solid var(--success-green-accent);
  border-radius: 1.05rem;
  box-shadow:
    0 14px 32px rgba(20, 22, 24, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  position: relative;
  overflow: hidden;
}

.hero-demand-form__status.is-success::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #b0915a 0%, #a68b52 38%, #5d9270 78%, #4a8160 100%);
}

.form-toast {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 1rem);
  right: 1rem;
  z-index: 80;
  min-width: 220px;
  max-width: min(88vw, 360px);
  padding: 0.68rem 0.8rem;
  border: 1px solid rgba(166, 139, 82, 0.45);
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.95);
  color: #2c251c;
  box-shadow: 0 10px 20px rgba(20, 22, 24, 0.18);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.form-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.form-toast.is-success {
  min-width: min(92vw, 380px);
  max-width: min(94vw, 440px);
  padding: 1.08rem 1.28rem 1.12rem;
  border: 1px solid rgba(166, 139, 82, 0.42);
  border-left: 4px solid var(--success-green-accent);
  border-radius: 1.05rem;
  background:
    linear-gradient(180deg, var(--success-green-soft) 0%, transparent 40%),
    linear-gradient(175deg, rgba(255, 255, 255, 0.97), rgba(248, 243, 232, 0.91));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 2.6vw, 1.14rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: var(--success-text);
  box-shadow:
    0 18px 42px rgba(20, 22, 24, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  position: relative;
  overflow: hidden;
}

.form-toast.is-success::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #b0915a 0%, #a68b52 38%, #5d9270 78%, #4a8160 100%);
}

.form-toast.is-error {
  border-color: rgba(163, 70, 70, 0.6);
}

.hero-demand-fab,
.nav-panel-demand {
  position: relative;
  min-height: 2.2rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(166, 139, 82, 0.95);
  border-radius: 999px;
  background: linear-gradient(135deg, #b0915a 0%, #a68b52 65%, #8d7443 100%);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}

.hero-demand-fab {
  align-self: flex-start;
  z-index: 2;
}

.nav-panel-demand {
  appearance: none;
  -webkit-appearance: none;
  text-align: center;
  display: none !important;
}

/* Yalnızca kaydırılmış header + açık çekmece menüde; hero’daki yatay menüde yok */
.top-nav.scrolled.nav-menu-open .nav-panel-demand {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.top-nav.scrolled.nav-menu-open .nav-panel-body > .nav-panel-demand {
  align-self: flex-end;
  margin-inline-start: auto;
  margin-inline-end: 0;
  flex-shrink: 0;
  width: max-content;
  max-width: 100%;
  margin-top: clamp(1rem, 3vh, 1.65rem);
}

.top-nav.scrolled.nav-menu-open .nav-panel-demand:hover {
  filter: brightness(1.06);
}

.top-nav.scrolled.nav-menu-open .nav-panel-demand:focus-visible {
  outline: 2px solid rgba(166, 139, 82, 0.75);
  outline-offset: 3px;
}

.hero-demand-fab[hidden] {
  display: none !important;
}

.hero-scroll-hint {
  grid-row: 2;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-top: clamp(1.25rem, 3vh, 2.5rem);
  margin-bottom: 0.5rem;
  z-index: 2;
}

.hero-scroll-hint__text {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll-hint__line {
  display: block;
  width: 1px;
  height: clamp(2.25rem, 6vh, 3.5rem);
  background: linear-gradient(180deg, var(--text-muted), transparent);
  opacity: 0.45;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(105deg, rgba(26, 26, 26, 0.04) 0%, transparent 42%);
}

.offer-banner {
  position: fixed;
  top: auto;
  bottom: clamp(1.25rem, 4vh, 2.5rem);
  left: clamp(1rem, 3vw, 1.75rem);
  z-index: 58;
  width: min(100%, 380px);
  height: auto;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translate3d(calc(-100% - 32px), 16px, 0);
  transition:
    max-height 0.58s cubic-bezier(0.22, 1, 0.38, 1),
    opacity 0.45s cubic-bezier(0.45, 0, 0.55, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.48, 1);
}

body:has(.top-nav.nav-menu-open) .offer-banner {
  z-index: 52;
}

.offer-banner.open {
  max-height: min(520px, 85dvh);
  animation: offer-banner-cinematic-in 1.18s cubic-bezier(0.17, 1, 0.32, 1) both;
}

@keyframes offer-banner-cinematic-in {
  0% {
    opacity: 0;
    transform: translate3d(calc(-100% - 48px), 28px, 0);
  }

  38% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .offer-banner {
    transform: translate3d(0, 12px, 0);
    transition-duration: 0.22s;
  }

  .offer-banner.open {
    animation: none;
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .hero-demand-form:not(.is-hidden) {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) and (min-width: 1025px) {
  .hero-demand-form:not(.is-hidden) {
    transform: translate3d(0, 0, 0);
  }
}

.offer-banner__holder {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  min-width: 0;
  border: 1px solid var(--hairline);
  border-radius: 2px;
  background: var(--bg-elevated);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 28px 56px rgba(26, 26, 26, 0.07);
  padding: clamp(1.35rem, 4vw, 2rem);
  display: grid;
  align-content: start;
  text-align: left;
  gap: 0.65rem;
  overflow-x: hidden;
}

.offer-banner--title {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.offer-banner--subtitle {
  margin-top: 0;
  font-family: var(--font-ui);
  color: var(--text-muted);
  font-size: clamp(0.68rem, 1.1vw, 0.78rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.55;
}

.text-gold {
  color: var(--gold);
}

.section-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 clamp(1.25rem, 2.5vw, 1.85rem);
}

.welcome-section {
  background: var(--bg-elevated);
  padding: clamp(3.5rem, 10vw, 7rem) clamp(1.35rem, 5vw, 3.5rem);
}

.welcome-lead {
  max-width: min(40rem, 100%);
  margin-inline: auto;
  margin-bottom: clamp(1.25rem, 2.8vw, 2rem);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  font-weight: 400;
  line-height: 1.58;
  text-align: center;
  color: var(--text-muted);
}

.welcome-lead-divider {
  width: 100%;
  max-width: 3rem;
  height: 1px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  background: var(--hairline);
}

.welcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  max-width: min(1240px, 100%);
  margin-inline: auto;
}

.welcome-visual {
  margin: 0;
  position: sticky;
  top: 6rem;
}

.welcome-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.welcome-copy {
  padding-top: 0.5rem;
}

.welcome-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  letter-spacing: -0.02em;
  color: var(--text);
  text-align: left;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.2;
  max-width: 20ch;
}

.welcome-heading--center {
  text-align: center;
  max-width: none;
}

.welcome-lead--narrow {
  max-width: min(34rem, 100%);
}

/* Lokasyon sayfası — anasayfa welcome / harita ritmiyle uyum */
body.subpage--lokasyon {
  background: var(--bg);
}

.lokasyon-page__intro {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(ellipse 95% 65% at 50% -28%, rgba(166, 139, 82, 0.14), transparent 52%),
    linear-gradient(180deg, #fdfcfa 0%, var(--bg-elevated) 100%);
}

.lokasyon-page__title.welcome-heading {
  margin-bottom: clamp(1.15rem, 2.8vw, 1.75rem);
}

.lokasyon-page__intro-divider.welcome-lead-divider {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.lokasyon-page__welcome-grid.welcome-grid {
  margin-top: clamp(3rem, 8vw, 5.5rem);
}

.lokasyon-page__copy-eyebrow {
  text-align: left;
  margin-bottom: clamp(0.6rem, 1.8vw, 0.95rem);
}

.lokasyon-page__figure.welcome-visual img {
  filter: drop-shadow(0 22px 38px rgba(26, 26, 26, 0.09));
}

.lokasyon-page__map.map-section {
  border-top: 1px solid var(--hairline);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 14%);
}

body.subpage--firsatlar {
  background: var(--bg);
}

.firsatlar-page__title.welcome-heading {
  margin-bottom: clamp(1.15rem, 2.8vw, 1.75rem);
}

.firsatlar-page__intro-divider.welcome-lead-divider {
  margin: clamp(1rem, 2.6vw, 1.6rem) auto clamp(1.5rem, 4vw, 2.4rem);
}

.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;
}

.welcome-body {
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  line-height: 1.75;
  color: var(--text-muted);
}

.welcome-body p+p {
  margin-top: 1.1rem;
}

.welcome-body-preview p+p {
  margin-top: 1.1rem;
}

.welcome-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.35rem;
  margin-bottom: 0.25rem;
  padding: 0 0 0.15rem;
  border: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.2);
  border-radius: 0;
  background: none;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.welcome-more-btn:hover {
  color: var(--gold);
  border-bottom-color: rgba(166, 139, 82, 0.55);
}

.welcome-more-icon {
  display: inline-grid;
  place-items: center;
  min-width: 1.35rem;
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.welcome-body-more {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.65s ease, opacity 0.45s ease;
}

.welcome-body-more.is-open {
  max-height: 3200px;
  opacity: 1;
}

.welcome-body-more p+p {
  margin-top: 1.1rem;
}

.experience-section {
  background: var(--bg-elevated);
  padding: clamp(3.5rem, 10vw, 7rem) clamp(1.35rem, 5vw, 3.5rem);
  overflow-x: clip;
}

.experience-section .welcome-lead-divider {
  margin-bottom: clamp(2.25rem, 4.5vw, 3.5rem);
}

.experience-mosaic {
  position: relative;
  width: 100%;
  max-width: min(1300px, 100%);
  margin-inline: auto;
  min-height: clamp(26rem, 58vh, 42rem);
  padding-top: clamp(1.25rem, 3.5vw, 2.25rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.experience-mosaic__primary,
.experience-mosaic__secondary {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: var(--bg);
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.1);
}

.experience-mosaic__primary {
  position: absolute;
  left: 0;
  top: clamp(1.5rem, 4vw, 2.75rem);
  width: min(100%, 78%);
  height: clamp(18rem, 46vh, 30rem);
  z-index: 1;
  border: 1px solid rgba(26, 26, 26, 0.06);
}

.experience-mosaic__primary img,
.experience-mosaic__secondary img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0);
  will-change: transform;
}

.experience-mosaic__secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(100%, 48%);
  height: clamp(12.5rem, 30vh, 21rem);
  z-index: 3;
  border: 1px solid rgba(26, 26, 26, 0.07);
  box-shadow: 0 18px 42px rgba(26, 26, 26, 0.12);
}

.experience-statement {
  margin: 0;
  padding: 0;
  border: none;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.9vw, 1.42rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
}

.experience-statement.experience-float-card {
  position: absolute;
  top: clamp(-0.35rem, 1.2vw, 0.65rem);
  right: 0;
  z-index: 4;
  max-width: min(22rem, 46%);
  padding: clamp(1.15rem, 2.8vw, 1.75rem) clamp(1.2rem, 2.5vw, 1.65rem);
  text-align: left;
  font-style: normal;
  color: var(--text-muted);
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(26, 26, 26, 0.06);
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.1);
}

.experience-statement p {
  margin: 0;
}

.membership-investment-pair {
  position: relative;
  margin-top: clamp(1.25rem, 3vw, 2.25rem);
}

.membership-investment-pair__hinge {
  position: relative;
  z-index: 6;
  height: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.membership-investment-pair__hinge-ring {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: clamp(4.75rem, 11vw, 6.75rem);
  height: clamp(4.75rem, 11vw, 6.75rem);
  border-radius: 50%;
  box-sizing: border-box;
  border: 1px solid rgba(26, 26, 26, 0.14);
  background: conic-gradient(var(--bg-elevated) 0deg 180deg,
      #d4c4a6 180deg 360deg);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35) inset,
    0 10px 28px rgba(26, 26, 26, 0.08);
}

.membership-investment-pair__hinge-ring::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px solid rgba(166, 139, 82, 0.35);
  opacity: 0.85;
}

.membership-feature {
  position: relative;
  z-index: 1;
  background: #ffffff;
  overflow: visible;
}

.membership-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  grid-template-areas: "copy figure";
  align-items: center;
  min-height: clamp(24rem, 64vh, 40rem);
  max-width: min(1320px, 100%);
  margin-inline: auto;
  column-gap: clamp(1.5rem, 4vw, 3.5rem);
}

.membership-feature__copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  gap: clamp(1.25rem, 2.8vw, 1.85rem);
  padding: clamp(2.75rem, 7vw, 5rem) clamp(1.35rem, 5vw, 3.25rem) clamp(3rem, 8vw, 5.5rem) clamp(1.35rem, 5vw, 2.5rem);
  background: #ffffff;
}

.membership-feature__eyebrow {
  text-align: right;
  margin: 0;
  align-self: flex-end;
}

.membership-feature__statement {
  margin: 0;
  max-width: min(20ch, 100%);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.45rem, 2.85vw, 2.2rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--text);
}

.membership-feature__figure {
  grid-area: figure;
  --mf-frame-out: clamp(0.55rem, 1.35vw, 0.95rem);
  --mf-frame-in: clamp(1.1rem, 2.8vw, 1.85rem);
  margin: 0;
  position: relative;
  align-self: stretch;
  min-height: clamp(20rem, 56vh, 36rem);
  margin-bottom: clamp(-2.5rem, -6vw, -1rem);
  padding: clamp(0.65rem, 1.6vw, 1.05rem) clamp(0.45rem, 1.4vw, 0.95rem) clamp(0.55rem, 1.8vw, 1.1rem) clamp(0.5rem, 1.8vw, 1.05rem);
  overflow: visible;
}

/* Ofset çerçeve: görselin sağ–üst köşesine taşan ince çift hat */
.membership-feature__figure::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: calc(-1 * var(--mf-frame-out)) calc(-1 * var(--mf-frame-out)) var(--mf-frame-in) var(--mf-frame-in);
  border: 1px solid rgba(26, 26, 26, 0.14);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.55) inset,
    0 0 0 1px rgba(166, 139, 82, 0.12);
  pointer-events: none;
}

.membership-feature__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.2) 0%, transparent 42%);
}

.membership-feature__figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: clamp(18rem, 50vh, 32rem);
  display: block;
  object-fit: cover;
  object-position: center top;
}

.investment-showcase {
  position: relative;
  z-index: 0;
  margin-top: clamp(-1.25rem, -3vw, -0.35rem);
  padding: clamp(3.25rem, 8vw, 5.5rem) clamp(1.35rem, 5vw, 3.5rem) clamp(3.5rem, 9vw, 6rem);
  background: #d4c4a6;
  border-top: none;
}

.investment-showcase__inner {
  max-width: min(1300px, 100%);
  margin-inline: auto;
}

.investment-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.75rem, 4.5vw, 4rem);
}

.investment-showcase__mosaic.experience-mosaic {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 0;
  padding: 0;
  display: block;
}

.investment-showcase__mosaic .experience-mosaic__primary {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  width: 100%;
  max-width: min(24rem, 100%);
  height: auto;
  min-height: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
  background: transparent;
  overflow: visible;
}

.investment-showcase__mosaic .experience-mosaic__primary img {
  width: 100%;
  height: auto;
  min-height: clamp(13rem, 32vw, 18rem);
  max-height: none;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.investment-showcase__frame {
  --inv-frame-out: clamp(0.5rem, 1.25vw, 0.85rem);
  --inv-frame-in: clamp(0.95rem, 2.4vw, 1.55rem);
  position: relative;
  width: 100%;
  overflow: visible;
}

/* Tek görsel: çerçeve sol–alta ofset */
.investment-showcase__frame::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: var(--inv-frame-in) var(--inv-frame-in) calc(-1 * var(--inv-frame-out)) calc(-1 * var(--inv-frame-out));
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 1px 0 rgba(26, 26, 26, 0.06);
  pointer-events: none;
}

.investment-showcase__frame .experience-mosaic__primary {
  position: relative;
  z-index: 1;
}

.investment-showcase__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: clamp(0.5rem, 2vw, 1rem) 0 clamp(0.5rem, 2vw, 1rem) clamp(0.25rem, 1.5vw, 1rem);
  max-width: min(26rem, 100%);
}

.investment-showcase__head {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

.investment-showcase__heading {
  margin: 0 0 clamp(0.85rem, 2vw, 1.2rem);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-family: var(--font-accent);
  font-weight: 400;
  line-height: 1.25;
}

.investment-showcase__heading-brand {
  font-size: clamp(0.72rem, 1.2vw, 0.88rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.investment-showcase__heading-sub {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.75vw, 1.85rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.investment-showcase__body {
  margin: 0;
  max-width: none;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.9);
}

.service-stack {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(3rem, 7vw, 5.2rem) clamp(1.1rem, 5vw, 3.2rem);
  background: #fffdf9;
}

.service-stack__inner {
  width: min(1240px, 100%);
  margin-inline: auto;
}

.service-stack__eyebrow {
  margin-bottom: clamp(0.6rem, 1.8vw, 0.9rem);
  text-align: left;
}

.service-stack__heading {
  margin: 0;
  max-width: 24ch;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--text);
}

.service-stack__divider {
  margin: clamp(1rem, 2.8vw, 1.4rem) 0 clamp(1.7rem, 4vw, 2.5rem);
  width: 100%;
}

.service-stack__list {
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.service-stack__item {
  display: grid;
  grid-template-columns: clamp(4.1rem, 8vw, 6.5rem) 1fr;
  align-items: start;
  column-gap: clamp(1.4rem, 2.8vw, 2.2rem);
  padding: clamp(1.45rem, 2.8vw, 2rem) 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.service-stack__number {
  margin: 0;
  align-self: start;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(26, 26, 26, 0.84);
  padding-top: 0.25rem;
}

.service-stack__content {
  min-width: 0;
  border-left: 1px solid rgba(26, 26, 26, 0.08);
  padding-left: clamp(1rem, 2.2vw, 1.6rem);
}

.service-stack__title {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--text);
}

.service-stack__text {
  margin: 0;
  max-width: 84ch;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.62;
  color: rgba(26, 26, 26, 0.62);
}

.dual-pillar {
  margin-top: clamp(2rem, 5vw, 3.75rem);
  padding: clamp(0.85rem, 2.2vw, 1.5rem) 0 0;
  overflow: clip;
}

.dual-pillar__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: clamp(22rem, 52vh, 38rem);
  width: 100%;
  min-width: 0;
}

.dual-pillar__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(3rem, 7vw, 4.75rem) clamp(1.35rem, 4.5vw, 2.75rem) clamp(2.25rem, 4.5vw, 3.25rem);
  min-width: 0;
}

.dual-pillar__col--muted {
  background: var(--bg);
}

.dual-pillar__col--light {
  background: var(--bg-elevated);
  border-left: 1px solid var(--hairline);
}

.dual-pillar__header {
  width: 100%;
  max-width: min(26rem, 100%);
  margin-bottom: clamp(1.25rem, 3.5vw, 2.25rem);
}

.dual-pillar__eyebrow {
  margin: 0 0 clamp(0.85rem, 2vw, 1.25rem);
  font-family: var(--font-ui);
  font-size: clamp(0.62rem, 1.05vw, 0.72rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.dual-pillar__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.32rem, 2.75vw, 2.05rem);
  line-height: 1.34;
  letter-spacing: -0.02em;
  color: var(--text);
}

.dual-pillar__tagline {
  margin: clamp(0.85rem, 2vw, 1.2rem) 0 0;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.45vw, 1.1rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Sağ sütun metni biraz daha sıkı; iki blok görsel olarak daha dengeli */
.dual-pillar__col--light .dual-pillar__title {
  font-size: clamp(1.15rem, 2.35vw, 1.72rem);
  line-height: 1.32;
}

.dual-pillar__col--light .dual-pillar__tagline {
  margin-top: clamp(0.65rem, 1.5vw, 1rem);
  font-size: clamp(0.86rem, 1.28vw, 0.98rem);
  line-height: 1.48;
}

.dual-pillar__col--light .dual-pillar__header {
  margin-bottom: clamp(1rem, 2.6vw, 1.85rem);
}

.dual-pillar__figure {
  margin: auto 0 0;
  width: 100%;
  max-width: min(300px, 78%);
  flex-shrink: 0;
}

.dual-pillar__figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.gallery-section {
  margin-top: clamp(2rem, 5vw, 3.75rem);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.2rem, 5vw, 3rem);
  background: transparent;
}

.gallery-section__inner {
  width: min(1240px, 100%);
  margin-inline: auto;
}

.gallery-section__eyebrow {
  margin-bottom: clamp(0.7rem, 2vw, 1rem);
  text-align: center;
}

.gallery-section__heading {
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

.gallery-section__divider {
  margin: clamp(1rem, 2.6vw, 1.6rem) auto clamp(1.5rem, 4vw, 2.4rem);
}

.gallery-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(7rem, 10vw, 8.8rem);
  grid-auto-flow: dense;
  gap: clamp(0.65rem, 1.5vw, 1rem);
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  background: transparent;
  box-shadow: 0 10px 30px rgba(26, 26, 26, 0.1);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

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

.gallery-card--portrait {
  grid-row: span 3;
}

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

.gallery-card--show-full img {
  object-fit: cover;
  object-position: center;
}

.gallery-card--show-full {
  grid-row: span 1;
}

.gallery-card--tall {
  grid-row: span 4;
}

.gallery-card--under-firsat3 {
  grid-column: 1;
  grid-row: 4 / span 4;
}

.map-section {
  --mx: 50%;
  --my: 50%;
  --map-spot-w: 100;
  --map-spot-disc: 80;
  --map-spot-label: 0.62;
  --map-canvas-ratio: 16 / 7.6;
  --map-card-shift-x: clamp(1.35rem, 4.5vw, 3.35rem);
  --map-card-shift-y: clamp(1.1rem, 3.8vw, 2.75rem);
  --map-card-width: min(292px, 34vw);
  --map-stage-margin-r: clamp(0.75rem, 2.5vw, 2rem);
  --map-stage-margin-b: clamp(2rem, 5.5vw, 4.25rem);
  --map-fit-pad-x: 58;
  --map-fit-pad-top: 52;
  --map-fit-pad-bottom: 28;
  --map-fit-max-zoom: 14;
  --map-fit-zoom-out: 0;
  --map-lng-offset: 0.011;
  position: relative;
  padding: clamp(6rem, 12vw, 9rem) clamp(1.35rem, 5vw, 3.5rem);
  background: var(--bg-elevated);
  overflow: visible;
}

.map-section__inner,
.map-section__stage {
  overflow: visible;
}

.map-section__inner {
  width: min(1440px, 100%);
  margin-inline: auto;
}

.map-section__eyebrow {
  margin-bottom: clamp(0.9rem, 2vw, 1.25rem);
}

.map-section__lead {
  margin: 0 auto clamp(1.4rem, 3vw, 2rem);
  max-width: min(42rem, 100%);
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.75vw, 1.2rem);
  line-height: 1.6;
  text-align: center;
  color: var(--text-muted);
}

.map-section__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 auto clamp(1.15rem, 2.5vw, 1.6rem);
  max-width: min(52rem, 100%);
}

.map-section__action-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(166, 139, 82, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #3f3428;
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(26, 26, 26, 0.06);
  transition:
    background 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.map-section__action-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0) 32%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 68%
  );
  transform: translateX(-130%);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.map-section__action-btn::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 176, 106, 0.85), rgba(141, 116, 67, 0.35));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.map-section__action-btn:hover,
.map-section__action-btn:focus-visible {
  border-color: rgba(166, 139, 82, 0.95);
  background: rgba(255, 255, 255, 0.98);
  color: #2a2218;
  box-shadow:
    0 10px 24px rgba(141, 116, 67, 0.2),
    0 0 0 1px rgba(212, 176, 106, 0.25);
  transform: translateY(-2px) scale(1.02);
}

.map-section__action-btn:hover::before,
.map-section__action-btn:focus-visible::before {
  transform: translateX(130%);
}

.map-section__action-btn:hover::after,
.map-section__action-btn:focus-visible::after {
  opacity: 1;
}

.map-section__action-btn.is-active {
  border-color: rgba(141, 116, 67, 0.95);
  background: linear-gradient(135deg, #b0915a 0%, #a68b52 65%, #8d7443 100%);
  color: #fff;
  box-shadow:
    0 12px 28px rgba(141, 116, 67, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.map-section__action-btn.is-active:hover,
.map-section__action-btn.is-active:focus-visible {
  background: linear-gradient(135deg, #c4a06a 0%, #b0915a 55%, #9a7f4a 100%);
  box-shadow:
    0 16px 34px rgba(141, 116, 67, 0.42),
    0 0 28px rgba(212, 176, 106, 0.22);
  transform: translateY(-3px) scale(1.03);
}

.map-section__stage {
  position: relative;
  overflow: visible;
  margin-right: var(--map-stage-margin-r);
  margin-bottom: var(--map-stage-margin-b);
}

.map-section.is-location-hover .map-section__canvas,
.map-section__stage:hover .map-section__canvas {
  box-shadow:
    0 28px 60px rgba(26, 26, 26, 0.24),
    0 0 0 1px rgba(166, 139, 82, 0.35);
}

.map-section__canvas {
  position: relative;
  width: 100%;
  aspect-ratio: var(--map-canvas-ratio);
  min-height: clamp(14rem, 42vw, 20rem);
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 20px 50px rgba(26, 26, 26, 0.18);
  transform: translateZ(0);
  transition:
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}

.map-section__map-host {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.map-section__map-host .leaflet-container {
  width: 100%;
  height: 100%;
  font-family: inherit;
  background: #e7e2d8;
  filter: saturate(0.92) brightness(0.96);
  transition:
    filter 0.45s ease,
    opacity 0.35s ease;
}

.map-section__spot-marker,
.map-section__spot-marker.leaflet-div-icon {
  display: flex !important;
  align-items: flex-start;
  justify-content: center;
  overflow: visible !important;
  background: transparent !important;
  border: none !important;
}

.map-spot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.22rem, 1vw, 0.38rem);
  width: calc(var(--map-spot-w) * 1px);
  pointer-events: auto;
  cursor: pointer;
  opacity: 0.94;
  transform: scale(0.98);
  transform-origin: 50% 40%;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease,
    filter 0.35s ease;
}

.map-spot.is-active,
.map-spot:hover {
  opacity: 1;
  transform: scale(1);
  filter: drop-shadow(0 14px 28px rgba(26, 26, 26, 0.22));
}

.map-spot__disc {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: calc(var(--map-spot-disc) * 1px);
  height: calc(var(--map-spot-disc) * 1px);
  border-radius: 999px;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
  background: #ddd6c8;
  border: 2px solid #d4b872;
  box-shadow:
    0 12px 30px rgba(26, 26, 26, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.65),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.map-spot__disc--gold {
  border-color: #d4b872;
}

.map-spot.is-active .map-spot__disc,
.map-spot:hover .map-spot__disc,
.map-spot--kaaba .map-spot__disc {
  box-shadow:
    0 16px 36px rgba(26, 26, 26, 0.26),
    0 0 0 2px rgba(212, 184, 114, 0.75),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.map-spot__disc--photo {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.map-spot__label {
  font-family: var(--font-display);
  font-size: calc(var(--map-spot-label) * 1rem);
  font-weight: 500;
  letter-spacing: clamp(0.14em, 1.2vw, 0.28em);
  line-height: 1;
  text-transform: uppercase;
  color: #1a2744;
  text-align: center;
  white-space: nowrap;
  max-width: calc(var(--map-spot-w) * 1px + 12px);
  overflow: hidden;
  text-overflow: ellipsis;
}

.map-spot--kaaba {
  width: calc(var(--map-spot-w) * 1px);
  opacity: 1;
  transform: scale(1);
  pointer-events: none;
}

.map-spot--kaaba .map-spot__label {
  color: #1a2744;
}

.map-section__kaaba-distance {
  background: transparent !important;
  border: none !important;
}

.map-section__kaaba-distance-pill {
  display: inline-block;
  max-width: min(11.5rem, 44vw);
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.96);
  border: 1px solid rgba(166, 139, 82, 0.5);
  box-shadow: 0 8px 22px rgba(26, 26, 26, 0.14);
  font-family: var(--font-ui);
  font-size: clamp(0.58rem, 2.4vw, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #3f3428;
  white-space: nowrap;
  text-align: center;
}

.map-section__kaaba-distance-pill--muted {
  opacity: 0.82;
  background: rgba(255, 253, 249, 0.88);
  border-color: rgba(166, 139, 82, 0.32);
  box-shadow: 0 6px 16px rgba(26, 26, 26, 0.1);
  font-weight: 500;
}

@keyframes mapKaabaDash {
  to {
    stroke-dashoffset: -34;
  }
}

.map-section__canvas:hover .map-section__map-host .leaflet-container,
.map-section.is-location-hover .map-section__map-host .leaflet-container {
  filter: saturate(1.05) brightness(1.02);
}

.map-section__canvas::before,
.map-section__canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.map-section__canvas::before {
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 50% 100%, rgba(166, 139, 82, 0.14) 0%, rgba(166, 139, 82, 0) 55%);
  opacity: 0.2;
  transition: opacity 0.4s ease;
}

.map-section__canvas::after {
  background: linear-gradient(112deg,
      rgba(255, 255, 255, 0) 38%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 63%);
  background-size: 250% 100%;
  background-position: 120% 50%;
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.3s ease, background-position 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.map-section__canvas:hover,
.map-section__canvas:focus-within,
.map-section.is-location-hover .map-section__canvas {
  transform: scale(1.018);
  box-shadow:
    0 26px 56px rgba(26, 26, 26, 0.22),
    0 0 0 1px rgba(166, 139, 82, 0.28);
}

.map-section__canvas:hover::before,
.map-section__canvas:focus-within::before,
.map-section.is-location-hover .map-section__canvas::before {
  opacity: 0.48;
}

.map-section__canvas:hover::after,
.map-section__canvas:focus-within::after {
  opacity: 1;
  background-position: -20% 50%;
}

.map-section__aura {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: screen;
}

.map-section__aura--one {
  width: clamp(12rem, 22vw, 18rem);
  height: clamp(12rem, 22vw, 18rem);
  left: 58%;
  top: 42%;
  background: radial-gradient(circle, rgba(212, 176, 106, 0.28) 0%, rgba(212, 176, 106, 0) 72%);
  animation: mapDriftA 9s ease-in-out infinite;
}

.map-section__aura--two {
  width: clamp(9rem, 16vw, 13rem);
  height: clamp(9rem, 16vw, 13rem);
  left: 50%;
  top: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 74%);
  animation: mapDriftB 7.2s ease-in-out infinite;
}

.map-section__scanline {
  position: absolute;
  left: 0;
  right: 0;
  top: -28%;
  height: 34%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  mix-blend-mode: screen;
  animation: mapSweep 5.8s linear infinite;
}

.map-section__zoom-controls {
  position: absolute;
  top: clamp(0.75rem, 2vw, 1.1rem);
  right: clamp(0.75rem, 2vw, 1.1rem);
  z-index: 5;
  display: inline-flex;
  gap: 0.35rem;
}

.map-section__zoom-btn {
  width: clamp(2rem, 8vw, 2.35rem);
  height: clamp(2rem, 8vw, 2.35rem);
  min-width: 2rem;
  min-height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(17, 14, 12, 0.72);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  line-height: 1;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    opacity 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease;
}

.map-section__zoom-btn:hover {
  background: rgba(17, 14, 12, 0.92);
  border-color: rgba(212, 176, 106, 0.85);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
}

.map-section__zoom-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.map-section__card {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 8;
  display: flex;
  flex-direction: column;
  width: var(--map-card-width);
  max-width: 100%;
  min-width: 0;
  padding: clamp(0.95rem, 1.6vw, 1.15rem);
  border: 1px solid rgba(166, 139, 82, 0.42);
  background: #fffdf9;
  color: var(--text);
  box-shadow:
    0 18px 44px rgba(26, 26, 26, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.72) inset;
  transform: translate(var(--map-card-shift-x), var(--map-card-shift-y));
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.45s ease;
}

.map-section__stage:hover .map-section__card,
.map-section.is-location-hover .map-section__card,
.map-section__card:hover {
  transform: translate(var(--map-card-shift-x), calc(var(--map-card-shift-y) - 4px));
  border-color: rgba(166, 139, 82, 0.62);
  box-shadow:
    0 24px 50px rgba(26, 26, 26, 0.16),
    0 0 28px rgba(166, 139, 82, 0.14);
}

.map-section__card.is-switching {
  animation: mapCardSwitch 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.map-section__card-image {
  width: 100%;
  height: clamp(110px, 16vw, 150px);
  display: block;
  object-fit: cover;
  border: 1px solid rgba(166, 139, 82, 0.4);
  margin-bottom: 0.58rem;
  transform: scale(1);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.map-section__card:hover .map-section__card-image,
.map-section.is-location-hover .map-section__card-image {
  transform: scale(1.06);
}

.map-section__card-kicker {
  margin: 0 0 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.map-section__card-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  color: var(--text);
}

.map-section__card-text {
  margin: 0.3rem 0 0.7rem;
  font-family: var(--font-display);
  font-size: 0.94rem;
  line-height: 1.45;
  color: var(--text-muted);
  flex: 1;
}

.map-section__card-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.35rem;
  margin-top: auto;
  padding: 0.44rem 0.65rem;
  border: 1px solid rgba(166, 139, 82, 0.52);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #b0915a 0%, #a68b52 65%, #8d7443 100%);
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.map-section__card-link::after {
  content: "→";
  opacity: 0.65;
  transform: translateX(0);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease;
}

.map-section__card-link:hover {
  border-color: rgba(212, 176, 106, 0.85);
  background: linear-gradient(135deg, #c4a06a 0%, #b0915a 55%, #9a7f4a 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(141, 116, 67, 0.28);
}

.map-section__card-link:hover::after {
  opacity: 1;
  transform: translateX(3px);
}

/* Harita — tablet */
@media (max-width: 1024px) {
  .map-section {
    --map-spot-w: 88;
    --map-spot-disc: 68;
    --map-spot-label: 0.58;
    --map-canvas-ratio: 16 / 10;
    --map-card-width: min(280px, calc(100% - 1.25rem));
    --map-card-shift-x: clamp(0.45rem, 2.2vw, 1.1rem);
    --map-card-shift-y: clamp(0.75rem, 3.5vw, 1.75rem);
    --map-stage-margin-r: 0;
    --map-stage-margin-b: clamp(2.5rem, 11vw, 4.75rem);
    --map-fit-pad-x: 48;
    --map-fit-pad-top: 50;
    --map-fit-pad-bottom: 44;
    --map-fit-max-zoom: 13;
    --map-fit-zoom-out: 0;
    --map-lng-offset: 0.008;
    padding-block: clamp(4.5rem, 10vw, 7rem);
  }

  .map-section__canvas {
    min-height: clamp(13rem, 48vw, 18rem);
  }

  .map-section__action-btn {
    min-height: 2.5rem;
    padding-inline: 0.85rem;
  }
}

/* Harita — mobil */
@media (max-width: 640px) {
  .map-section {
    --map-spot-w: 72;
    --map-spot-disc: 56;
    --map-spot-label: 0.54;
    --map-canvas-ratio: 4 / 3;
    --map-fit-pad-x: 56;
    --map-fit-pad-top: 52;
    --map-fit-pad-bottom: 56;
    --map-fit-max-zoom: 12;
    --map-fit-zoom-out: 1;
    --map-lng-offset: 0.004;
    padding-inline: clamp(0.9rem, 4.5vw, 1.15rem);
  }

  .map-section__lead {
    font-size: clamp(0.95rem, 3.8vw, 1.05rem);
    line-height: 1.55;
  }

  .map-section__actions {
    gap: 0.5rem;
  }

  .map-section__action-btn {
    flex: 1 1 calc(50% - 0.3rem);
    min-width: min(100%, 9.5rem);
    font-size: clamp(0.54rem, 2.6vw, 0.62rem);
    letter-spacing: 0.08em;
    padding-inline: 0.55rem;
  }

  .map-section__stage {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(0.85rem, 3vw, 1.1rem);
    margin-right: 0;
    margin-bottom: 0;
  }

  .map-section__canvas {
    min-height: min(72vw, 20rem);
  }

  .map-section__card {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: center;
    width: min(100%, 20.5rem);
    transform: none;
  }

  .map-section__stage:hover .map-section__card,
  .map-section.is-location-hover .map-section__card,
  .map-section__card:hover {
    transform: translateY(-4px);
  }

  .map-section__card-image {
    height: clamp(96px, 28vw, 128px);
  }

  .map-section__card-text {
    font-size: clamp(0.86rem, 3.4vw, 0.94rem);
  }
}

/* Harita — dar telefon */
@media (max-width: 480px) {
  .map-section {
    --map-spot-w: 64;
    --map-spot-disc: 50;
    --map-spot-label: 0.5;
    --map-canvas-ratio: 5 / 4;
    --map-fit-pad-x: 50;
    --map-fit-pad-top: 48;
    --map-fit-pad-bottom: 52;
    --map-fit-max-zoom: 11;
    --map-fit-zoom-out: 1;
    --map-lng-offset: 0.003;
  }

  .map-section__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .map-section__action-btn {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
  }

  .map-section__canvas {
    min-height: min(68vw, 17.5rem);
  }

  .map-section__zoom-controls {
    top: 0.45rem;
    right: 0.45rem;
    gap: 0.28rem;
  }

  .map-section__card {
    width: 100%;
    max-width: none;
    padding: 0.8rem 0.85rem 0.9rem;
  }
}

/* Harita — geniş masaüstü */
@media (min-width: 1280px) {
  .map-section {
    --map-fit-pad-x: 64;
    --map-fit-pad-top: 56;
    --map-fit-pad-bottom: 32;
  }

  .map-section__canvas {
    min-height: 21rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  .experience-mosaic__primary img,
  .experience-mosaic__secondary img {
    will-change: auto;
    animation: none;
  }

  .map-section__canvas,
  .map-section__canvas::before,
  .map-section__canvas::after,
  .map-section__aura,
  .map-section__scanline,
  .map-section__action-btn,
  .map-section__action-btn::before,
  .map-section__action-btn::after,
  .map-section__card,
  .map-section__card-image,
  .map-section__card-link,
  .map-section__map-host .leaflet-container,
  .map-spot {
    transition: none;
    animation: none;
  }

  .map-section__card.is-switching {
    animation: none;
  }

  .map-section__aura,
  .map-section__scanline {
    animation: none;
  }

}

/** #about: görseller #experience ile aynı .experience-mosaic düzeni */
#about.welcome-section {
  overflow-x: clip;
  padding-bottom: clamp(5rem, 12vw, 9.5rem);
}

#about + .map-section {
  padding-top: clamp(6.5rem, 13vw, 10.5rem);
}

#about .welcome-visual.experience-mosaic {
  margin: 0;
  width: 100%;
  max-width: none;
  padding-top: 0;
  min-height: clamp(22rem, 50vh, 36rem);
}

#about .welcome-visual .experience-mosaic__primary {
  top: 0;
}

/* "Daha fazla" acikken about gorseli, welcome bolumu gibi daha sakin gorunsun. */
#about .welcome-visual.experience-mosaic.is-expanded {
  position: sticky;
  top: 6rem;
  align-self: start;
}

#about .welcome-visual.experience-mosaic.is-expanded .experience-parallax-img {
  transform: none !important;
}

@media (max-width: 1024px) {
  #about.welcome-section {
    padding-bottom: clamp(2.75rem, 9vw, 4.75rem);
  }

  #about + .map-section {
    padding-top: clamp(3.25rem, 10vw, 6rem);
  }

  #about .welcome-visual.experience-mosaic {
    min-height: 0;
    width: 100%;
    max-width: min(26rem, 100%);
    margin-inline: auto;
  }

  #about .experience-mosaic:not(.investment-showcase__mosaic) .experience-mosaic__primary {
    min-height: clamp(11rem, 46vw, 17rem);
    aspect-ratio: 16 / 10;
    border-radius: 0.5rem;
    overflow: hidden;
  }

  #about .experience-mosaic:not(.investment-showcase__mosaic) .experience-mosaic__secondary {
    width: min(88%, 17.5rem);
    min-height: clamp(9.5rem, 34vw, 14rem);
    aspect-ratio: 3 / 4;
    margin-left: auto;
    margin-right: auto;
    margin-top: clamp(-0.85rem, -2.5vw, -0.35rem);
    margin-bottom: 0;
    border-radius: 0.5rem;
    overflow: hidden;
    align-self: center;
  }

  #about .welcome-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(1.15rem, 3.8vw, 1.65rem);
  }

  #about .welcome-copy {
    order: -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: none;
    margin-inline: auto;
    padding-top: 0;
    text-align: center;
  }

  #about .welcome-copy > .welcome-heading {
    font-size: clamp(1.05rem, 3.6vw, 1.42rem);
    line-height: 1.28;
    letter-spacing: 0.04em;
    max-width: none;
    margin-inline: auto;
    margin-bottom: clamp(0.85rem, 2.5vw, 1.2rem);
    text-align: center;
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  #about .welcome-body,
  #about .welcome-body-preview,
  #about .welcome-body-more {
    width: 100%;
    text-align: center;
    font-size: clamp(0.97rem, 2.75vw, 1.05rem);
    line-height: 1.72;
  }

  #about .welcome-more-btn {
    align-self: center;
    margin-inline: auto;
    margin-top: 1rem;
  }

  #about .welcome-visual.experience-mosaic {
    order: 0;
  }

  #about .welcome-visual.experience-mosaic.is-expanded {
    position: static;
    top: auto;
    align-self: stretch;
  }
}

@media (max-width: 640px) {
  #about.welcome-section {
    padding-top: clamp(2.5rem, 8vw, 3.5rem);
    padding-bottom: clamp(2.25rem, 7vw, 3.25rem);
  }

  #about .welcome-lead {
    font-size: clamp(1rem, 3.6vw, 1.12rem);
    line-height: 1.55;
  }

  #about .welcome-lead-divider {
    margin-bottom: clamp(1.35rem, 4vw, 1.85rem);
  }

  #about .welcome-grid {
    gap: 1rem;
  }

  #about .welcome-copy > .welcome-heading {
    font-size: clamp(0.98rem, 4vw, 1.15rem);
    line-height: 1.32;
    letter-spacing: 0.03em;
  }

  #about .welcome-body,
  #about .welcome-body-preview,
  #about .welcome-body-more {
    font-size: clamp(0.92rem, 3.2vw, 1rem);
    line-height: 1.68;
  }

  #about .welcome-visual.experience-mosaic {
    max-width: 100%;
    margin-inline: 0;
  }

  #about .experience-mosaic:not(.investment-showcase__mosaic) .experience-mosaic__primary {
    min-height: clamp(9rem, 40vw, 12.5rem);
    aspect-ratio: 16 / 9;
  }

  #about .experience-mosaic:not(.investment-showcase__mosaic) .experience-mosaic__secondary {
    width: min(76%, 13.5rem);
    min-height: clamp(7rem, 26vw, 10rem);
    margin-top: clamp(-0.45rem, -1.2vw, -0.2rem);
  }
}

@media (max-width: 1024px) {
  .dual-pillar__grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0;
  }

  .dual-pillar__col--light {
    border-left: none;
    border-top: 1px solid var(--hairline);
  }

  .dual-pillar__col {
    min-height: 0;
    padding: clamp(2.25rem, 6vw, 3.5rem) clamp(1.25rem, 5vw, 2rem);
  }

  .dual-pillar__figure {
    max-width: min(280px, 85%);
    margin-inline: auto;
  }

  .dual-pillar__title {
    font-size: clamp(1.15rem, 4.2vw, 1.85rem);
  }

  .dual-pillar__tagline {
    font-size: clamp(0.92rem, 2.8vw, 1.05rem);
  }

  .dual-pillar__col--light .dual-pillar__title {
    font-size: clamp(1.15rem, 4.2vw, 1.85rem);
  }

  .dual-pillar__col--light .dual-pillar__tagline {
    font-size: clamp(0.92rem, 2.8vw, 1.05rem);
    margin-top: clamp(0.85rem, 2vw, 1.2rem);
  }

  .dual-pillar__col--light .dual-pillar__header {
    margin-bottom: clamp(1.25rem, 3.5vw, 2.25rem);
  }
}

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

  .welcome-visual {
    position: static;
    max-width: min(420px, 100%);
    margin-inline: auto;
  }

  .welcome-copy > .welcome-heading:not(.welcome-heading--center) {
    text-align: center;
    max-width: none;
    margin-inline: auto;
  }

  .welcome-heading--center {
    text-align: center;
  }

  .welcome-copy .section-eyebrow {
    text-align: center;
    margin-inline: auto;
  }

  .membership-feature .membership-feature__eyebrow {
    text-align: center;
    align-self: center;
  }

  .service-stack .section-eyebrow {
    text-align: center;
  }

  .experience-mosaic:not(.investment-showcase__mosaic) {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-bottom: 0;
    gap: 0;
  }

  .experience-mosaic:not(.investment-showcase__mosaic) .experience-mosaic__primary {
    position: relative;
    width: 100%;
    height: auto;
    min-height: clamp(14rem, 52vw, 22rem);
    aspect-ratio: 4 / 3;
  }

  .experience-mosaic:not(.investment-showcase__mosaic) .experience-mosaic__secondary {
    position: relative;
    width: min(100%, 19rem);
    height: auto;
    min-height: clamp(11rem, 40vw, 16rem);
    aspect-ratio: 3 / 4;
    margin-left: auto;
    margin-top: clamp(-2.75rem, -8vw, -1.5rem);
    margin-bottom: 0;
  }

  .experience-statement.experience-float-card {
    position: relative;
    top: auto;
    right: auto;
    max-width: none;
    width: 100%;
    margin-top: clamp(1rem, 3vw, 1.5rem);
    padding: clamp(1.1rem, 3vw, 1.45rem) clamp(1rem, 3vw, 1.35rem);
  }

  .experience-statement {
    font-size: clamp(1.02rem, 3.6vw, 1.2rem);
  }

  .membership-feature__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "figure"
      "copy";
    min-height: 0;
  }

  .membership-feature__copy {
    align-items: center;
    text-align: center;
    border-right: none;
    border-top: 1px solid rgba(26, 26, 26, 0.08);
    padding: clamp(2rem, 5vw, 2.75rem) clamp(1.35rem, 5vw, 2rem);
  }

  .membership-feature__eyebrow {
    text-align: center;
    align-self: center;
  }

  .membership-feature__figure {
    margin-bottom: 0;
    min-height: clamp(16rem, 58vw, 24rem);
    max-height: min(70vw, 26rem);
  }

  .membership-feature__figure img {
    min-height: 0;
    max-height: min(70vw, 26rem);
  }

  .membership-feature__statement {
    max-width: none;
    font-size: clamp(1.2rem, 4.2vw, 1.55rem);
  }

  .investment-showcase {
    margin-top: 0;
    padding-top: clamp(2.5rem, 7vw, 3.5rem);
  }

  .investment-showcase__grid {
    grid-template-columns: 1fr;
    gap: clamp(1.35rem, 4vw, 2rem);
  }

  .investment-showcase__mosaic.experience-mosaic {
    width: 100%;
    max-width: min(400px, 100%);
    margin-inline: auto;
  }

  .investment-showcase__mosaic .experience-mosaic__primary {
    max-width: none;
    margin-left: 0;
    margin-top: 0;
  }

  .investment-showcase__copy {
    padding: 0 0 clamp(1.5rem, 4vw, 2.25rem);
    max-width: none;
  }

  .service-stack {
    padding-inline: clamp(1rem, 5vw, 1.35rem);
  }

  .service-stack__heading {
    max-width: none;
    font-size: clamp(1.35rem, 6.6vw, 1.9rem);
  }

  .service-stack__divider {
    margin-inline: auto;
  }

  .service-stack__item {
    grid-template-columns: 1fr;
    row-gap: 0.5rem;
    padding-block: 1rem;
  }

  .service-stack__number {
    padding-top: 0;
  }

  .service-stack__content {
    border-left: none;
    padding-left: 0;
  }

  .service-stack__title {
    font-size: clamp(1.25rem, 5vw, 1.55rem);
  }

  .gallery-section {
    padding-inline: clamp(1rem, 5vw, 1.5rem);
  }

  .gallery-section__eyebrow,
  .gallery-section__heading,

  .gallery-section__divider {
    margin-inline: auto;
  }

  .gallery-section__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: clamp(7rem, 20vw, 10rem);
  }

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

  .gallery-card--portrait,
  .gallery-card--tall {
    grid-row: span 2;
  }

  .gallery-card--under-firsat3 {
    grid-column: 1;
    grid-row: 3 / span 2;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 6vw, 3.5rem);
  }

  .site-footer__form-actions {
    justify-content: flex-start;
  }

  .site-footer__nav {
    justify-content: center;
  }

  .site-footer__column--nav {
    text-align: center;
  }

  .site-footer__column--nav .site-footer__nav-wrap {
    display: flex;
    justify-content: center;
  }

  .site-footer__brand-wrap {
    justify-content: center;
  }

  .lokasyon-page__welcome-grid.welcome-grid {
    margin-top: clamp(1.35rem, 4.5vw, 2.25rem);
  }
}

/* Mobil + tablet (≤1024px): bölüm başlıkları ortalı, iç grid düzeni dengeli */
@media (max-width: 1024px) {
  .welcome-section,
  .experience-section,
  .gallery-section,
  .map-section,
  .service-stack,
  .membership-feature,
  .investment-showcase,
  .dual-pillar,
  .firsatlar-interactive {
    padding-inline: clamp(1rem, 4.6vw, 1.35rem);
  }

  .welcome-section > .section-eyebrow:first-of-type,
  .welcome-section > .welcome-lead {
    text-align: center;
  }

  .welcome-section > .welcome-lead-divider {
    margin-inline: auto;
  }

  .welcome-grid .welcome-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .welcome-copy > .welcome-heading:not(.welcome-heading--center),
  .welcome-copy > .section-eyebrow {
    text-align: center;
    max-width: min(22ch, 100%);
    margin-inline: auto;
  }

  .welcome-body,
  .welcome-body-preview,
  .welcome-body-more {
    text-align: center;
  }

  .welcome-more-btn {
    margin-inline: auto;
  }

  .experience-section > .section-eyebrow {
    text-align: center;
  }

  .experience-section > .welcome-lead-divider {
    margin-inline: auto;
  }

  .experience-mosaic:not(.investment-showcase__mosaic) .experience-mosaic__secondary {
    margin-left: auto;
    margin-right: auto;
    margin-top: clamp(-1.25rem, -3.5vw, -0.5rem);
  }

  .experience-statement.experience-float-card {
    text-align: center;
  }

  .gallery-section .gallery-section__eyebrow,
  .gallery-section .gallery-section__heading {
    text-align: center;
  }

  .gallery-section__divider {
    margin-inline: auto;
  }

  .gallery-section__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-section .gallery-section__eyebrow,
  .gallery-section .gallery-section__heading,
  .gallery-section__divider {
    align-self: center;
  }

  .gallery-section__grid {
    width: 100%;
    align-self: stretch;
  }

  .map-section__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .map-section .map-section__eyebrow,
  .map-section .map-section__lead {
    align-self: center;
    text-align: center;
    max-width: 36rem;
  }

  .service-stack .section-eyebrow,
  .service-stack .service-stack__heading {
    text-align: center;
  }

  .service-stack__heading {
    margin-inline: auto;
    max-width: none;
  }

  .service-stack__divider {
    margin-inline: auto;
    max-width: 3rem;
  }

  .service-stack__item {
    justify-items: center;
    text-align: center;
  }

  .service-stack__content {
    align-items: center;
  }

  .membership-feature .membership-feature__copy {
    align-items: center;
    text-align: center;
  }

  .membership-feature .membership-feature__eyebrow {
    text-align: center;
    align-self: center;
  }

  .membership-feature__statement {
    text-align: center;
  }

  .investment-showcase__copy {
    align-items: center;
    text-align: center;
    max-width: none;
    margin-inline: auto;
  }

  .investment-showcase__heading {
    align-items: center;
    text-align: center;
  }

  .investment-showcase__heading-brand,
  .investment-showcase__heading-sub {
    text-align: center;
  }

  .investment-showcase__body {
    text-align: center;
  }

  .investment-showcase__grid {
    justify-items: center;
  }

  .dual-pillar__header,
  .dual-pillar__eyebrow,
  .dual-pillar__title,
  .dual-pillar__tagline {
    text-align: center;
  }

  .dual-pillar__figure {
    margin-inline: auto;
  }

  .site-footer__inner {
    align-items: center;
    gap: clamp(2rem, 6vw, 2.75rem);
    padding-inline: clamp(1rem, 4.6vw, 1.35rem);
  }

  .site-footer__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 6vw, 2.75rem);
    width: 100%;
  }

  .site-footer__column--form,
  .site-footer__column--nav {
    width: 100%;
    max-width: 26rem;
    margin-inline: auto;
    text-align: center;
  }

  .site-footer__column--nav .site-footer__nav-wrap {
    width: 100%;
    justify-content: center;
  }

  .site-footer__brand-wrap {
    justify-content: center;
    align-items: center;
    margin-top: clamp(1.25rem, 4vw, 1.75rem);
    padding-top: clamp(1.25rem, 4vw, 1.75rem);
  }

  .site-footer__brand-mark {
    justify-content: center;
    flex-wrap: wrap;
    margin-inline: auto;
  }

  .site-footer__identity {
    width: 100%;
    max-width: 26rem;
    margin-top: clamp(1.25rem, 4vw, 1.75rem);
    padding-top: clamp(1.75rem, 5vw, 2.25rem);
    border-top: 1px solid var(--hairline);
  }

  .site-footer__column-title,
  .site-footer__heading,
  .site-footer__lede {
    text-align: center;
  }

  .site-footer__lede {
    margin-inline: auto;
  }

  .site-footer__checks {
    align-items: center;
  }

  .site-footer__check {
    justify-content: center;
    text-align: center;
  }

  .site-footer__form-actions {
    justify-content: center;
  }

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

  .site-footer__field--full {
    grid-column: auto;
  }

  .firsatlar-interactive__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .firsatlar-interactive .section-eyebrow,
  .firsatlar-interactive .welcome-heading--center {
    text-align: center;
  }

  .firsatlar-interactive .section-eyebrow,
  .firsatlar-interactive .welcome-heading--center,
  .firsatlar-interactive .welcome-lead-divider {
    align-self: center;
  }

  .firsatlar-interactive__layout {
    width: 100%;
    align-self: stretch;
  }

  .page-about-lead .section-eyebrow,
  .page-about-lead .welcome-heading--center {
    text-align: center;
  }

  .lokasyon-page__intro .section-eyebrow,
  .lokasyon-page__intro .welcome-heading {
    text-align: center;
  }

  .lokasyon-page__intro .lokasyon-page__copy-eyebrow {
    text-align: center;
  }

  .lokasyon-page__welcome-grid .welcome-copy .welcome-heading {
    text-align: center;
    margin-inline: auto;
    max-width: none;
  }

  .map-section__card {
    align-items: center;
    text-align: center;
  }

  .map-section__card-kicker,
  .map-section__card-title,
  .map-section__card-text {
    text-align: center;
  }

  .map-section__card-link {
    align-self: center;
    margin-inline: auto;
  }

  .offer-banner__holder {
    text-align: center;
  }

  .lokasyon-page__copy-eyebrow {
    text-align: center;
  }
}

.arrow {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  border: 1px solid var(--hairline);
  border-radius: 2px;
  background: rgba(250, 249, 247, 0.9);
  color: var(--text-muted);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.arrow:hover {
  background: var(--bg-elevated);
  color: var(--text);
}

.arrow::before {
  content: "×";
  font-size: 1rem;
  line-height: 1;
  font-weight: 300;
}

/* ≤1024px: ana sayfa hero’da da yalnızca hamburger (yatay link şeridi yok) */
@media (max-width: 1024px) {
  .nav-toggle {
    touch-action: manipulation;
    background: rgba(250, 249, 247, 0.94);
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 0.5rem;
    box-shadow: 0 4px 16px rgba(26, 26, 26, 0.08);
  }

  /* Hero (scroll öncesi): masaüstü yatay menü yerine hamburger + sağ çekmece */
  .top-nav:not(.scrolled) .nav-toggle {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1) rotate(0deg);
    transition:
      opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.72s cubic-bezier(0.34, 1.5, 0.42, 1),
      visibility 0s linear 0s;
  }

  .top-nav:not(.scrolled) .nav-panel {
    position: fixed;
    right: 0;
    left: auto;
    top: 0;
    width: min(300px, 88vw);
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: clamp(1.35rem, 3.5vw, 1.85rem) clamp(1.35rem, 4.5vw, 2rem);
    padding-bottom: clamp(1.75rem, 4vh, 2.5rem);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: #ffffff;
    box-shadow: -12px 0 40px rgba(26, 26, 26, 0.08);
    z-index: 57;
    transform: translateX(105%);
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.46s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.46s;
  }

  .top-nav:not(.scrolled).nav-menu-open .nav-panel {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition:
      transform 0.46s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0s;
  }

  .top-nav:not(.scrolled) .nav-panel-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    justify-content: center;
    gap: clamp(0.2rem, 1.8vh, 0.65rem);
    min-height: 0;
  }

  .top-nav:not(.scrolled) .nav-panel .nav-link,
  .top-nav:not(.scrolled) .nav-panel .lang-btn {
    font-family: var(--font-display);
    font-size: clamp(0.88rem, 2.2vw, 1.05rem);
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: right;
    padding: 0.55rem 0;
    color: var(--text);
    border-bottom: none;
    min-width: 0;
  }

  .top-nav:not(.scrolled) .nav-panel .lang-btn {
    justify-content: flex-end;
    align-self: flex-end;
  }

  .top-nav:not(.scrolled) .nav-links-stacked.nav-panel {
    gap: 0;
    align-items: stretch;
  }

  .top-nav:not(.scrolled).nav-menu-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      opacity 0.38s ease,
      visibility 0s linear 0s;
  }

  .top-nav:not(.scrolled).nav-menu-open .nav-weather {
    display: inline-flex;
  }

  .top-nav:not(.scrolled).nav-menu-open .nav-panel-tagline {
    display: block;
    text-align: right;
  }

  .top-nav:not(.scrolled).nav-menu-open .nav-panel-demand {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  .top-nav:not(.scrolled).nav-menu-open .nav-panel-body > .nav-panel-demand {
    align-self: flex-end;
    margin-inline-start: auto;
    margin-inline-end: 0;
    flex-shrink: 0;
    width: max-content;
    max-width: 100%;
    margin-top: clamp(1rem, 3vh, 1.65rem);
  }

  .top-nav:not(.scrolled).nav-menu-open .nav-toggle {
    z-index: 59;
  }

  .top-nav:not(.scrolled).nav-menu-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(calc(0.42em + 0.11em)) rotate(45deg);
  }

  .top-nav:not(.scrolled).nav-menu-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.4);
  }

  .top-nav:not(.scrolled).nav-menu-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(calc(-1 * (0.42em + 0.11em))) rotate(-45deg);
  }

  .top-nav:not(.scrolled).nav-menu-open .nav-panel-body > * {
    animation: navDrawerLinkIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .top-nav:not(.scrolled).nav-menu-open .nav-panel-body > *:nth-child(1) {
    animation-delay: 0.05s;
  }

  .top-nav:not(.scrolled).nav-menu-open .nav-panel-body > *:nth-child(2) {
    animation-delay: 0.1s;
  }

  .top-nav:not(.scrolled).nav-menu-open .nav-panel-body > *:nth-child(3) {
    animation-delay: 0.15s;
  }

  .top-nav:not(.scrolled).nav-menu-open .nav-panel-body > *:nth-child(4) {
    animation-delay: 0.2s;
  }

  .top-nav:not(.scrolled).nav-menu-open .nav-panel-body > *:nth-child(5) {
    animation-delay: 0.24s;
  }

  .top-nav:not(.scrolled).nav-menu-open .nav-panel-body > *:nth-child(6) {
    animation-delay: 0.28s;
  }

  .top-nav:not(.scrolled).nav-menu-open .nav-panel-body > *:nth-child(7) {
    animation-delay: 0.32s;
  }
}

@media (max-width: 1024px) {
  .top-nav {
    min-height: 100vh;
  }

  .nav-ambient {
    display: none;
  }

  .brand-logo {
    width: 148px;
    height: 148px;
    padding: 9px;
  }

  .top-nav.scrolled .brand-logo {
    width: 90px;
    height: 90px;
    padding: 7px;
  }

  .top-nav.scrolled::before {
    height: calc(var(--header-inset-top-scrolled) + 5.55rem);
  }

  .top-nav.scrolled .brand {
    height: calc(var(--header-inset-top-scrolled) + 5.55rem);
  }

  .top-nav.scrolled .nav-actions {
    top: calc(env(safe-area-inset-top, 0px) + 0.72rem);
  }

  /* Tam ekran hero + ortalı başlık (grid align-items:end mobilde içeriği alta itiyordu) */
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100dvh;
    min-height: 100svh;
    width: 100%;
    box-sizing: border-box;
    padding-inline: clamp(0.65rem, 4vw, 1rem);
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(0.5rem, 2.5vh, 1rem));
  }

  .hero-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    width: 100%;
    max-width: min(36rem, 100%);
    min-width: 0;
    margin-top: clamp(4.75rem, 19vw, 6.75rem);
    margin-bottom: clamp(0.75rem, 3vh, 1.25rem);
    padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 4vw, 1.35rem);
    text-align: center;
    grid-row: auto;
    justify-self: center;
  }

  .hero-demand-bundle {
    position: static;
    transform: none;
    width: 100%;
    max-width: min(26rem, 100%);
    align-items: center;
    z-index: 5;
    flex-shrink: 0;
    margin-top: 0;
  }

  .hero-scroll-hint {
    flex-shrink: 0;
    margin-top: clamp(0.35rem, 2vh, 0.85rem);
    margin-bottom: 0;
  }

  .hero-demand-form {
    width: 100%;
    max-width: min(560px, 100%);
    padding: 0.62rem;
    margin-inline: auto;
    margin-top: 0.85rem;
    box-sizing: border-box;
  }

  .hero-demand-fab {
    margin: 0.55rem auto 0;
    position: relative;
    z-index: 6;
  }

  .hero-demand-form__grid {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .hero-demand-form__field--wide {
    grid-column: auto;
  }

  .nav-actions {
    right: 0.75rem;
    top: calc(env(safe-area-inset-top, 0px) + 1.2rem);
    gap: 0.3rem;
  }

  .top-nav:not(.scrolled) .nav-actions {
    gap: 0.46rem;
  }

  .nav-link,
  .lang-btn {
    min-width: 112px;
    font-size: 0.8rem;
    padding: 0.38rem 0.65rem;
  }

  .top-nav:not(.scrolled) .nav-link,
  .top-nav:not(.scrolled) .lang-btn {
    min-width: unset;
    font-size: 0.68rem;
    padding: 0.45rem 0;
  }

  .top-nav:not(.scrolled) .nav-links-stacked {
    gap: 0.35rem;
  }

  @keyframes offer-banner-mobile-in {
    0% {
      opacity: 0;
      transform: translate3d(0, 28px, 0) scale(0.97);
    }

    45% {
      opacity: 1;
    }

    100% {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
    }
  }

  /* Hero bildirimi: yatayda tam ortada, alttan belirgin kart */
  .offer-banner {
    top: auto;
    bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(0.65rem, 3vw, 1rem));
    left: 0;
    right: 0;
    margin-inline: auto;
    width: min(calc(100% - 1.35rem), 400px);
    max-width: none;
    z-index: 62;
    transform: translate3d(0, 20px, 0);
  }

  .offer-banner.open {
    max-height: min(78dvh, 560px);
    animation: offer-banner-mobile-in 1.05s cubic-bezier(0.17, 1, 0.32, 1) both;
  }

  .offer-banner__holder {
    text-align: center;
    padding: clamp(1.35rem, 4.5vw, 1.75rem) clamp(2.9rem, 9vw, 3.6rem) clamp(1.15rem, 3.5vh, 1.5rem)
      clamp(1.35rem, 4.5vw, 1.75rem);
    max-height: min(70dvh, 520px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-color: rgba(166, 139, 82, 0.38);
    background: rgba(252, 251, 248, 0.98);
    box-shadow:
      0 28px 64px rgba(26, 26, 26, 0.16),
      0 0 0 1px rgba(166, 139, 82, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.65);
  }

  .offer-banner--title {
    font-size: clamp(1.12rem, 4vw, 1.42rem);
    font-weight: 600;
    letter-spacing: -0.02em;
  }

  .offer-banner--subtitle {
    font-size: clamp(0.76rem, 2.6vw, 0.9rem);
    letter-spacing: 0.05em;
    line-height: 1.55;
    color: rgba(92, 92, 92, 0.95);
  }

  .offer-banner--title,
  .offer-banner--subtitle {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .offer-banner .arrow {
    top: 0.65rem;
    right: 0.65rem;
    width: 40px;
    height: 40px;
    border-radius: 0.45rem;
    z-index: 2;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 1024px) {
  .offer-banner {
    transform: translate3d(0, 12px, 0);
  }

  .offer-banner.open {
    animation: none;
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Laptop / orta masaüstü: ön talep formu küçülür; yerleşim (sol form, orta metin) aynı kalır */
@media (min-width: 1025px) and (max-width: 1680px) {
  .hero-demand-bundle {
    left: clamp(0.65rem, 2.4vw, 1.2rem);
  }

  .hero-demand-form {
    width: min(400px, 35vw);
    padding: clamp(0.62rem, 1.25vw, 0.92rem);
    border-radius: 0.92rem;
  }

  .hero-demand-form__title {
    font-size: clamp(1.02rem, 1.4vw, 1.38rem);
  }

  .hero-demand-form__note {
    font-size: 0.84rem;
    line-height: 1.4;
    margin-top: 0.28rem;
    margin-bottom: 0.52rem;
  }

  .hero-demand-form__grid {
    gap: 0.38rem;
  }

  .hero-demand-form__field input,
  .hero-demand-form__field textarea {
    min-height: 2.08rem;
    padding: 0.36rem 0.48rem;
    font-size: 0.85rem;
  }

  .hero-demand-form__field textarea {
    min-height: 3.1rem;
  }

  .hero-demand-form__check {
    margin-top: 0.46rem;
    font-size: 0.8rem;
    line-height: 1.32;
    gap: 0.38rem;
  }

  .hero-demand-form__submit {
    margin-top: 0.52rem;
    min-height: 2rem;
    font-size: 0.72rem;
  }

  .hero-demand-form__status:not(.is-success) {
    margin-top: 0.38rem;
    font-size: 0.7rem;
    min-height: 1rem;
  }
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .hero-demand-form {
    width: min(360px, 38vw);
  }
}

@media (min-width: 1025px) {
  .hero-demand-bundle {
    top: clamp(1.35rem, 4vh, 2.75rem);
    transform: none;
  }
}

.site-footer {
  margin-top: 0;
  background: linear-gradient(180deg, #f5f3ef 0%, var(--bg) 45%, var(--bg) 100%);
  color: var(--text);
}

.site-footer__inner {
  max-width: min(1120px, 100%);
  margin-inline: auto;
  padding: clamp(2.25rem, 6vw, 3.5rem) clamp(1.35rem, 5vw, 3.5rem) clamp(2rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-footer__brand-wrap {
  margin-top: clamp(1.35rem, 3vw, 2rem);
  padding-top: clamp(1.25rem, 2.8vw, 1.85rem);
  border-top: 1px solid var(--hairline);
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.site-footer__brand {
  display: inline-block;
  margin: 0;
  opacity: 0.96;
  transition: opacity 0.2s ease;
}

.site-footer__brand:hover {
  opacity: 1;
}

.site-footer__brand-mark {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.8rem, 2vw, 1.15rem);
}

.site-footer__brand-mark img {
  width: auto;
  display: block;
  object-fit: contain;
  object-position: right center;
  filter: brightness(0);
}

.site-footer__brand-mark .site-footer__logo {
  height: clamp(4.1rem, 9.5vw, 5.65rem);
  max-height: clamp(4.1rem, 9.5vw, 5.65rem);
  max-width: min(6.25rem, 100%);
  flex-shrink: 0;
  filter: none;
}

.site-footer__brand-mark .site-footer__logo-wordmark {
  height: clamp(3.9rem, 9.1vw, 5.35rem);
  max-height: clamp(3.9rem, 9.1vw, 5.35rem);
  max-width: min(20rem, 100%);
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) !important;
}

.site-footer__identity {
  max-width: min(34rem, 100%);
  margin-inline: auto;
  padding-top: clamp(2rem, 4.5vw, 2.75rem);
  margin-top: clamp(0.25rem, 1vw, 0.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(0.5rem, 1.5vw, 0.85rem);
}

.site-footer__weather {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 0 clamp(0.15rem, 0.5vw, 0.35rem);
  font-family: var(--font-ui);
  font-size: clamp(0.76rem, 1.15vw, 0.86rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.site-footer__weather-icon {
  display: flex;
  color: var(--gold);
  opacity: 0.88;
}

.site-footer__weather-icon svg {
  display: block;
}

.site-footer__weather-text {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.site-footer__phone {
  margin: 0.15rem 0 0;
  font-family: var(--font-ui);
  font-size: clamp(0.88rem, 1.35vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.65rem;
  margin: clamp(0.65rem, 2vw, 1rem) 0 0;
}

.site-footer__legal-link {
  font-family: var(--font-ui);
  font-size: clamp(0.68rem, 1.05vw, 0.76rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__legal-link:hover {
  color: var(--gold);
}

.site-footer__legal-sep {
  color: rgba(92, 92, 92, 0.4);
  font-weight: 500;
  user-select: none;
}

.site-footer__copyline {
  margin: clamp(0.5rem, 1.5vw, 0.75rem) 0 0;
  font-family: var(--font-ui);
  font-size: clamp(0.62rem, 0.95vw, 0.7rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(92, 92, 92, 0.75);
}

.site-footer__social--center {
  justify-content: center;
  margin-top: clamp(1rem, 2.5vw, 1.35rem);
}

/* Grid iki sütun yalnızca masaüstünde; aksi halde sonraki kural mobil/tablet flex düzenini ezer. */
.site-footer__grid {
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 5vw, 2.75rem);
  border-bottom: 1px solid var(--hairline);
}

@media (min-width: 1025px) {
  .site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: start;
  }
}

.site-footer__column-title {
  margin: 0 0 clamp(0.65rem, 1.5vw, 0.85rem);
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.site-footer__column--nav .site-footer__column-title {
  margin-bottom: 0.75rem;
}

.site-footer__column--form .site-footer__heading {
  margin-top: 0;
}

.site-footer__heading {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  letter-spacing: -0.02em;
  color: var(--text);
}

.site-footer__lede {
  margin: 0 0 clamp(1.35rem, 3vw, 1.85rem);
  max-width: 36ch;
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
  line-height: 1.55;
  color: var(--text-muted);
}

.site-footer__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.1rem, 2.5vw, 1.5rem) clamp(1.25rem, 3vw, 2rem);
}

.site-footer__field--full {
  grid-column: 1 / -1;
}

.site-footer__field label {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.site-footer__field input,
.site-footer__field textarea {
  width: 100%;
  padding: 0.55rem 0 0.65rem;
  border: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 0;
  background: transparent;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-footer__field textarea {
  min-height: 5.5rem;
  resize: vertical;
  line-height: 1.55;
}

.site-footer__field input::placeholder,
.site-footer__field textarea::placeholder {
  color: rgba(92, 92, 92, 0.45);
}

.site-footer__field input:hover,
.site-footer__field textarea:hover {
  border-bottom-color: rgba(166, 139, 82, 0.45);
}

.site-footer__field input:focus,
.site-footer__field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
  box-shadow: 0 1px 0 0 var(--gold);
}

.site-footer__checks {
  margin-top: clamp(1.35rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.site-footer__check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-family: var(--font-ui);
  font-size: clamp(0.72rem, 1.15vw, 0.8rem);
  line-height: 1.5;
  color: var(--text-muted);
  cursor: pointer;
}

.site-footer__check input {
  margin-top: 0.2rem;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

.site-footer__inline-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.site-footer__inline-link:hover {
  color: #8a7344;
}

.site-footer__form-actions {
  margin-top: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  justify-content: flex-end;
}

.site-footer__submit {
  padding: 0.72rem 1.65rem;
  border: 1px solid rgba(166, 139, 82, 0.45);
  border-radius: 2px;
  background: transparent;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.site-footer__submit:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(166, 139, 82, 0.08);
}

.site-footer__column--nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: 0.15rem;
  text-align: right;
}

.site-footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem 1.35rem;
}

.site-footer__nav a {
  font-family: var(--font-ui);
  font-size: clamp(0.82rem, 1.25vw, 0.92rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.site-footer__address {
  margin: 0;
  max-width: 32rem;
  font-family: var(--font-ui);
  font-size: clamp(0.76rem, 1.12vw, 0.86rem);
  line-height: 1.55;
  letter-spacing: 0.03em;
  color: var(--text-muted);
}

.site-footer__social {
  display: flex;
  gap: 0.65rem;
}

.site-footer__social-link {
  display: inline-grid;
  place-items: center;
  min-width: 2.25rem;
  min-height: 2.25rem;
  padding: 0 0.35rem;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 2px;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}

.site-footer__social-link:hover {
  border-color: rgba(166, 139, 82, 0.55);
  color: var(--gold);
}

.kroki-section {
  padding: clamp(5.5rem, 10vw, 8rem) clamp(1.25rem, 4.5vw, 3.2rem);
}

.kroki-section__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.kroki-layout {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
}

.kroki-map-card {
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  border: 1px solid rgba(26, 26, 26, 0.14);
  background: #f2f0ea;
  min-height: clamp(25rem, 54vw, 42rem);
  overflow: hidden;
}

.kroki-map-card__pdf,
.kroki-map-card__image {
  width: 100%;
  height: 100%;
  min-height: clamp(20rem, 44vw, 34rem);
  display: block;
}

.kroki-map-card__pdf {
  border: 0;
}

.kroki-map-card__image {
  object-fit: contain;
}

.kroki-map-focus {
  position: absolute;
  left: var(--focus-x, 80%);
  top: var(--focus-y, 18%);
  transform: translate(-50%, -50%);
  min-height: 2.1rem;
  padding: 0 0.7rem;
  border-radius: 0.4rem;
  border: 1px solid rgba(166, 139, 82, 0.65);
  background: var(--gold);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: default;
  z-index: 2;
  pointer-events: none;
}

.kroki-map-focus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--focus-w, 18%);
  height: var(--focus-h, 14%);
  transform: translate(-50%, -50%);
  border: 2px solid rgba(128, 33, 33, 0.75);
  background: rgba(137, 24, 24, 0.12);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.45) inset;
  pointer-events: none;
}

.kroki-type-selector {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0.8rem;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.kroki-hotspot {
  min-height: 2.1rem;
  border-radius: 0.4rem;
  border: 1px solid rgba(166, 139, 82, 0.65);
  background: rgba(255, 255, 255, 0.92);
  color: #201f1c;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.kroki-hotspot:hover,
.kroki-hotspot:focus-visible,
.kroki-hotspot.is-active {
  background: var(--gold);
  color: #fff;
  transform: scale(1.03);
}

.kroki-info-card {
  border: 1px solid rgba(26, 26, 26, 0.12);
  background: #fff;
  padding: clamp(1rem, 2vw, 1.4rem);
  position: sticky;
  top: calc(var(--header-inset-top-scrolled) + 1rem);
}

.kroki-info-card__kicker {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.kroki-info-card__title {
  margin-top: 0.5rem;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.kroki-info-card__list {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.48rem;
  list-style: none;
  padding: 0;
}

.kroki-info-card__hint {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.firsatlar-interactive {
  padding: clamp(4rem, 7.2vw, 5.8rem) clamp(1.25rem, 4.5vw, 3.2rem);
  background:
    radial-gradient(circle at 12% 18%, rgba(166, 139, 82, 0.12), transparent 42%),
    radial-gradient(circle at 88% 84%, rgba(166, 139, 82, 0.08), transparent 38%),
    linear-gradient(180deg, #f8f6f2 0%, #f3f0ea 100%);
}

.firsatlar-interactive__inner {
  width: 100%;
  margin: 0 auto;
}

.firsatlar-mode-switch {
  margin: 0.85rem auto 0;
  display: flex;
  justify-content: center;
  gap: 0.55rem;
}

.firsatlar-mode-btn {
  min-height: 2.2rem;
  padding: 0.42rem 1rem;
  border: 1px solid rgba(166, 139, 82, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #2a241b;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
}

.firsatlar-mode-btn.is-active {
  background: linear-gradient(135deg, #b0915a 0%, #a68b52 65%, #8d7443 100%);
  color: #fff;
  border-color: rgba(166, 139, 82, 0.95);
  box-shadow: 0 8px 18px rgba(134, 103, 49, 0.24);
}

.firsatlar-mode-panel[hidden] {
  display: none !important;
}

.firsatlar-docs {
  margin-top: clamp(0.9rem, 2vw, 1.35rem);
  border: 1px solid rgba(166, 139, 82, 0.22);
  border-radius: 1rem;
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.95), rgba(248, 243, 232, 0.9));
  padding: clamp(1rem, 2.5vw, 1.5rem);
  box-shadow: 0 16px 30px rgba(18, 20, 22, 0.09);
}

.firsatlar-docs__heading {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.firsatlar-docs__text {
  margin-top: 0.5rem;
  color: var(--text-muted);
}

.firsatlar-docs__grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 1280px) {
  .firsatlar-docs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.firsatlar-docs__item {
  border: 1px solid rgba(166, 139, 82, 0.2);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.7rem;
}

.firsatlar-docs__item-title {
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

.firsatlar-docs__viewer {
  width: 100%;
  height: 32rem;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.55rem;
  background: #fff;
}

.firsatlar-docs__actions {
  margin-top: 0.85rem;
  display: flex;
}

.firsatlar-docs__btn {
  min-height: 2.4rem;
  border: 1px solid rgba(166, 139, 82, 0.36);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.88);
  color: #2a241b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.22s ease;
}

.firsatlar-docs__btn:hover,
.firsatlar-docs__btn:focus-visible {
  background: linear-gradient(135deg, #b0915a 0%, #a68b52 65%, #8d7443 100%);
  color: #fff;
  border-color: rgba(166, 139, 82, 0.95);
  box-shadow: 0 8px 18px rgba(134, 103, 49, 0.24);
}

.firsatlar-calendar__item {
  margin-top: 0.8rem;
}

.firsatlar-calendar__viewer {
  height: clamp(22rem, 58vh, 40rem);
}

.firsatlar-hotel-placeholder {
  margin-top: clamp(0.9rem, 2vw, 1.35rem);
  border: 1px solid rgba(166, 139, 82, 0.22);
  border-radius: 1rem;
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.92), rgba(248, 243, 232, 0.88));
  box-shadow: 0 16px 30px rgba(18, 20, 22, 0.09);
  overflow: hidden;
}

.firsatlar-hotel-placeholder__media {
  margin: 0;
  aspect-ratio: 16 / 8;
}

.firsatlar-hotel-placeholder__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.firsatlar-hotel-placeholder__content {
  padding: 0.95rem 1rem 1.05rem;
}

.firsatlar-hotel-placeholder__content h2 {
  font-size: clamp(1.02rem, 1.6vw, 1.3rem);
}

.firsatlar-hotel-placeholder__content p {
  margin-top: 0.4rem;
}

.firsatlar-hotel-text {
  margin-top: 0.48rem;
}

.firsatlar-hotel-layout .firsatlar-interactive__image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: none;
}

.firsatlar-hotel-layout .firsatlar-interactive__canvas::after {
  display: none;
}

.firsatlar-hotel-layout .firsatlar-interactive__canvas {
  display: flex;
  align-items: center;
  justify-content: center;
}

.firsatlar-hotel-thumbs {
  grid-template-columns: 1fr;
  gap: 0.45rem;
}

.firsatlar-hotel-thumb {
  min-height: 0;
  padding: 0;
  border-radius: 0.6rem;
  overflow: hidden;
  border: 1px solid rgba(166, 139, 82, 0.34);
  background: #fff;
}

.firsatlar-hotel-thumb img {
  width: 100%;
  height: 84px;
  display: block;
  object-fit: cover;
}

.firsatlar-interactive__layout {
  margin-top: clamp(0.85rem, 1.9vw, 1.35rem);
  display: grid;
  grid-template-columns: minmax(0, 0.28fr) minmax(0, 1fr) minmax(0, 0.38fr);
  gap: clamp(0.8rem, 1.8vw, 1.25rem);
  align-items: start;
  width: 100%;
  min-width: 0;
}

.firsatlar-interactive__thumbs {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  gap: 0.48rem;
  padding: clamp(0.7rem, 1.8vw, 0.95rem);
  border: 1px solid rgba(166, 139, 82, 0.22);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.94), rgba(249, 245, 236, 0.88));
  backdrop-filter: blur(12px);
  border-radius: 0.95rem;
  box-shadow:
    0 20px 36px rgba(17, 19, 21, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.firsatlar-thumb {
  min-height: 2.45rem;
  border: 1px solid rgba(166, 139, 82, 0.35);
  border-radius: 0.55rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(249, 247, 243, 0.98));
  color: #1d1b18;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.firsatlar-thumb:hover,
.firsatlar-thumb:focus-visible,
.firsatlar-thumb.is-active {
  border-color: rgba(166, 139, 82, 0.9);
  background: linear-gradient(135deg, #b0915a 0%, #a68b52 65%, #8d7443 100%);
  color: #fff;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 10px 22px rgba(134, 103, 49, 0.28);
}

.firsatlar-interactive__stage {
  margin: 0;
  position: relative;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 0.95rem;
  background: #f4f1ea;
  aspect-ratio: 4098 / 2304;
  min-height: clamp(24rem, 46vw, 34rem);
  min-width: 0;
  overflow: hidden;
  box-shadow: 0 24px 42px rgba(19, 21, 24, 0.12);
}

.firsatlar-interactive__canvas {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
}

/* Rezidans: cover görseli grid ortalamada aşağı kaymasın — kutuya tam oturt */
.firsatlar-interactive__layout:not(.firsatlar-hotel-layout) .firsatlar-interactive__canvas {
  display: block;
}

.firsatlar-interactive__layout:not(.firsatlar-hotel-layout) .firsatlar-interactive__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.firsatlar-interactive__canvas::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(5.2rem, 10vw, 8rem);
  height: clamp(3.2rem, 6vw, 5.2rem);
  background: #fff;
  border-top-left-radius: 0.55rem;
  pointer-events: none;
}

.firsatlar-interactive__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.firsatlar-interactive__image--base {
  opacity: 1;
  filter: none;
}

.firsatlar-interactive__info {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 1;
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(166, 139, 82, 0.22);
  border-radius: 1.05rem;
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.95), rgba(248, 243, 232, 0.9));
  backdrop-filter: blur(10px);
  padding: clamp(1rem, 2.1vw, 1.4rem);
  box-shadow:
    0 22px 40px rgba(18, 20, 22, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.firsatlar-interactive__kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.firsatlar-interactive__title {
  margin-top: 0.5rem;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.firsatlar-interactive__list {
  margin-top: 0.82rem;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.44rem;
}

.firsatlar-interactive__list li {
  border: 1px solid rgba(166, 139, 82, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(251, 247, 238, 0.86));
  border-radius: 0.62rem;
  padding: 0.54rem 0.66rem;
}

/* Masar Tower: başlıklar görünür, özet bilgi listesi ve fiyat satırı gizli */
.firsatlar-interactive__info.is-masar-overview .firsatlar-interactive__list,
.firsatlar-interactive__info.is-masar-overview #firsatlar-detail-price {
  display: none;
}

.firsatlar-interactive__hint {
  margin-top: 0.95rem;
  color: var(--text-muted);
}

.firsatlar-content {
  padding: clamp(2.4rem, 5vw, 4.2rem) clamp(1.25rem, 4.5vw, 3.2rem) clamp(3.5rem, 7vw, 5.5rem);
}

.firsatlar-content__inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.firsatlar-content__heading {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.firsatlar-content p {
  color: #34312d;
}

.firsatlar-content__grid {
  margin-top: 0.45rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.firsatlar-content__card {
  border: 1px solid rgba(166, 139, 82, 0.2);
  border-radius: 0.9rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(250, 246, 237, 0.9));
  padding: 1rem 1.05rem;
  box-shadow: 0 14px 28px rgba(19, 18, 16, 0.08);
}

.firsatlar-content__card--dynamic {
  grid-column: 1 / -1;
}

.firsatlar-content__card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.45rem;
}

.firsatlar-content__price {
  margin-top: 0.65rem;
}

.firsatlar-interactive__navcol {
  display: grid;
  gap: 0.8rem;
  min-width: 0;
}

.firsatlar-content--in-info {
  margin-top: 0.9rem;
  padding: 0;
}

.firsatlar-content--in-info .firsatlar-content__inner {
  width: 100%;
  gap: 0.7rem;
}

/* Bilgi kutusu: liste ile aynı gövde tipografisi (global `p` → Inter yerine display) */
.firsatlar-content--in-info p {
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 0.3vw + 0.92rem, 1.08rem);
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--text);
}

.firsatlar-content--in-info .firsatlar-content__card h3 {
  font-family: var(--font-display);
  font-weight: 600;
}

/* Laptop / dar masaüstü: üç sütun sıkışmasın; bilgi paneli alta tam genişlik */
@media (max-width: 1399px) {
  .firsatlar-interactive {
    padding-inline: clamp(0.95rem, 3.8vw, 1.5rem);
  }

  .firsatlar-mode-switch {
    flex-wrap: wrap;
    gap: 0.45rem;
  }

  .firsatlar-interactive__layout {
    grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
    gap: 0.75rem;
  }

  .firsatlar-interactive__stage {
    min-height: clamp(19rem, 52vw, 27rem);
  }

  .firsatlar-interactive__info {
    grid-column: 1 / -1;
    margin-top: 0.75rem;
    max-width: none;
  }

  .firsatlar-hotel-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .firsatlar-interactive {
    padding-top: clamp(3.2rem, 7.6vw, 4rem);
    padding-bottom: clamp(2.4rem, 6vw, 3.4rem);
  }

  .firsatlar-interactive__layout {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .firsatlar-interactive__navcol {
    order: 2;
  }

  .firsatlar-interactive__stage {
    order: 1;
    min-height: clamp(17.5rem, 58vw, 23rem);
  }

  .firsatlar-interactive__info {
    order: 3;
    margin-top: 0.2rem;
  }
}

/* Fırsatlar sayfası - yatay laptop ve kısa yükseklik optimizasyonu */
@media (min-width: 1180px) and (max-height: 900px) {
  .firsatlar-interactive {
    padding-top: clamp(3.1rem, 5.4vh, 4.2rem);
    padding-bottom: clamp(2.4rem, 4.2vh, 3.4rem);
  }

  .firsatlar-interactive__stage {
    min-height: clamp(20rem, 33vw, 24rem);
    aspect-ratio: 16 / 7.2;
  }

  .firsatlar-interactive__image {
    object-fit: cover;
    object-position: center center;
  }

  .firsatlar-interactive__thumbs {
    padding: 0.58rem;
    gap: 0.38rem;
  }

  .firsatlar-thumb {
    min-height: 2.05rem;
    font-size: 0.72rem;
    letter-spacing: 0.045em;
  }

  .firsatlar-interactive__info {
    padding: 0.82rem 0.86rem;
    width: 100%;
  }

  .firsatlar-interactive__title {
    font-size: clamp(1rem, 1.45vw, 1.2rem);
  }

  .firsatlar-interactive__list {
    gap: 0.32rem;
  }

  .firsatlar-interactive__list li {
    padding: 0.4rem 0.52rem;
    font-size: 0.82rem;
  }

  .firsatlar-interactive__hint {
    margin-top: 0.7rem;
    font-size: 0.82rem;
    line-height: 1.35;
  }
}

@media (min-width: 1360px) and (max-height: 760px) {
  .firsatlar-interactive__stage {
    min-height: clamp(17rem, 28vw, 21rem);
    aspect-ratio: 16 / 6.8;
  }

  .firsatlar-interactive__image {
    object-fit: cover;
    object-position: center center;
  }

  .firsatlar-thumb {
    min-height: 1.86rem;
    font-size: 0.68rem;
  }

  .firsatlar-interactive__info {
    padding: 0.72rem 0.76rem;
  }

  .firsatlar-interactive__title {
    font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  }
}

@media (min-width: 1024px) and (max-width: 1440px) and (max-height: 900px) {
  .firsatlar-interactive__image {
    object-fit: cover;
    object-position: center center;
  }
}

@media (max-width: 640px) {
  .firsatlar-interactive {
    padding-inline: clamp(0.75rem, 4vw, 1rem);
    padding-top: clamp(2.6rem, 10vw, 3.5rem);
    padding-bottom: clamp(2rem, 8vw, 2.75rem);
  }

  /* display:block order özelliğini öldürüyordu; önce plan görseli, sonra seçim şeridi */
  .firsatlar-interactive__layout {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .firsatlar-interactive__stage {
    order: 1;
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
    max-height: 56vw;
    border-radius: 0.8rem;
  }

  .firsatlar-interactive__canvas {
    padding: 0.2rem;
  }

  .firsatlar-interactive__canvas::after {
    display: none;
  }

  .firsatlar-interactive__image {
    object-fit: cover;
    object-position: center;
  }

  .firsatlar-interactive__navcol {
    order: 2;
    width: 100%;
  }

  .firsatlar-mode-switch {
    margin-top: 0.72rem;
    flex-wrap: wrap;
    justify-content: center;
    padding-inline: 0.25rem;
  }

  .firsatlar-mode-btn {
    flex: 1 1 auto;
    min-width: min(140px, 42vw);
    text-align: center;
  }

  .firsatlar-hotel-layout.firsatlar-interactive__layout {
    display: flex;
  }

  .firsatlar-hotel-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .firsatlar-interactive__thumbs {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin-bottom: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    z-index: 1;
    padding: clamp(0.55rem, 2.5vw, 0.75rem);
    gap: 0.38rem;
  }

  .firsatlar-thumb {
    min-height: 0;
    padding: 0.42rem 0.38rem;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    line-height: 1.25;
    white-space: normal;
    text-align: center;
    hyphens: auto;
  }

  .firsatlar-interactive__info {
    order: 3;
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 0;
    z-index: 1;
    padding: clamp(0.85rem, 3vw, 1.15rem);
  }

  .firsatlar-interactive__title {
    font-size: clamp(1.05rem, 4.5vw, 1.35rem);
    word-break: break-word;
  }

  .firsatlar-interactive__list li {
    font-size: clamp(0.82rem, 3.2vw, 0.94rem);
  }

  .firsatlar-content__grid {
    grid-template-columns: 1fr;
  }

  .firsatlar-docs__actions {
    display: flex;
  }

  .firsatlar-docs__grid {
    grid-template-columns: 1fr;
  }

  .firsatlar-docs__viewer {
    height: 24rem;
  }

  .kroki-section {
    padding-inline: 0.9rem;
  }

  .kroki-layout {
    grid-template-columns: 1fr;
  }

  .kroki-map-card {
    min-height: 22rem;
  }

  .kroki-type-selector {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .kroki-info-card {
    position: relative;
    top: auto;
  }

  .welcome-section,
  .experience-section,
  .gallery-section,
  .map-section,
  .dual-pillar,
  .membership-feature,
  .investment-showcase,
  .site-footer {
    padding-inline: clamp(0.9rem, 4.5vw, 1.15rem);
  }

  .welcome-section {
    padding-block: clamp(2.35rem, 9vw, 3.85rem);
  }

  .subpage-main .welcome-section:first-child {
    padding-top: clamp(2rem, 7vw, 3rem);
  }

  .hero-content {
    padding-inline: clamp(0.9rem, 4.5vw, 1.15rem);
  }

  .hero-display {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.06;
  }

  .hero-lede,
  .welcome-lead,
  .map-section__lead,
  .investment-showcase__body,
  .welcome-body p {
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .offer-banner {
    left: 0;
    right: 0;
    margin-inline: auto;
    width: min(calc(100% - 1.2rem), 400px);
    max-width: none;
  }
}

@media (max-width: 560px) {
  .gallery-section__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(9.5rem, auto);
  }

  .gallery-card--wide,
  .gallery-card--portrait,
  .gallery-card--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-card--under-firsat3 {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer__nav {
    gap: 0.2rem;
  }

  .site-footer__nav a {
    padding: 0.4rem 0.25rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .site-footer__brand-wrap {
    justify-content: center;
  }

  .site-footer__brand-mark {
    justify-content: center;
    gap: 0.6rem;
  }
}

/* iPhone SE (375px) ve benzeri dar ekranlar */
@media (max-width: 375px) {
  :root {
    --header-inset-top: calc(env(safe-area-inset-top, 0px) + 1.1rem);
    --header-inset-top-scrolled: calc(env(safe-area-inset-top, 0px) + 0.48rem);
  }

  .brand-logo {
    width: 144px;
    height: 144px;
    padding: 10px;
  }

  .top-nav.scrolled .brand-logo {
    width: 78px;
    height: 78px;
    padding: 6px;
  }

  .hero-content {
    padding-inline: 0.9rem;
  }

  .hero-display {
    font-size: clamp(1.8rem, 8.8vw, 2.25rem);
  }

  .hero-lede {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .offer-banner {
    left: 0;
    right: 0;
    margin-inline: auto;
    width: min(calc(100% - 1rem), 400px);
    max-width: none;
    bottom: 0.75rem;
  }

  .offer-banner__holder {
    padding: 0.95rem clamp(2.75rem, 10vw, 3.25rem) 1rem 0.95rem;
  }

  .section-eyebrow,
  .welcome-heading,
  .service-stack__heading,
  .gallery-section__heading,
  .map-section__lead,
  .investment-showcase__heading,
  .dual-pillar__title {
    word-break: break-word;
  }

}

/* iPhone 12/13/14 (390px) ve yakın genişlikler */
@media (min-width: 376px) and (max-width: 430px) {
  .hero-content {
    padding-inline: 1rem;
  }

  .hero-display {
    font-size: clamp(2rem, 8.2vw, 2.6rem);
  }

  .offer-banner {
    left: 0;
    right: 0;
    margin-inline: auto;
    width: min(calc(100% - 1.25rem), 400px);
    max-width: none;
  }

  .welcome-grid {
    gap: 1.1rem;
  }
}

/* Tablet (768px) odaklı ince ayarlar — welcome/footer iki sütunu geri getirme (≤1024 ortalı tek kolon düzeni bozulmasın) */
@media (min-width: 700px) and (max-width: 820px) {
  .welcome-section,
  .gallery-section,
  .map-section,
  .membership-feature,
  .investment-showcase,
  .dual-pillar,
  .site-footer {
    padding-inline: clamp(1.6rem, 3.8vw, 2.2rem);
  }

  .hero-content {
    max-width: 42rem;
    padding-inline: 2rem;
  }

  .gallery-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(9.5rem, 14vw, 12rem);
  }

  .site-footer__grid {
    gap: clamp(1.8rem, 3vw, 2.3rem);
  }
}

/* Laptop (13"-15") odaklı ince ayarlar */
@media (min-width: 1024px) and (max-width: 1440px) {
  .welcome-section,
  .gallery-section,
  .map-section,
  .membership-feature,
  .investment-showcase,
  .dual-pillar,
  .site-footer {
    padding-inline: clamp(2rem, 4.8vw, 3.6rem);
  }

  .hero-content {
    max-width: 52rem;
    padding-inline: clamp(1.6rem, 3vw, 2.4rem);
  }

  .hero-display {
    font-size: clamp(2.9rem, 4.9vw, 4.1rem);
  }

  .welcome-grid {
    grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
    gap: clamp(1.3rem, 2.3vw, 2rem);
  }

  .experience-mosaic {
    min-height: clamp(26rem, 43vw, 34rem);
  }

  .gallery-section__inner,
  .map-section__inner,
  .map-section__stage,
  .service-stack__inner,
  .membership-feature__grid,
  .investment-showcase__inner,
  .site-footer__inner {
    max-width: min(1200px, 100%);
  }

  .dual-pillar__grid {
    max-width: min(1200px, 100%);
    margin-inline: auto;
  }

  .gallery-section__grid {
    grid-auto-rows: clamp(8.25rem, 11vw, 11.25rem);
  }

  .service-stack__heading {
    max-width: 22ch;
  }

  .site-footer__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(1.6rem, 2.6vw, 2.3rem);
  }
}

/* Yatay laptoplar (geniş ekran + düşük yükseklik) */
@media (min-width: 1280px) and (max-height: 860px) {
  .hero-content {
    padding-top: clamp(6rem, 10vh, 8rem);
    padding-bottom: clamp(2rem, 4vh, 3rem);
    max-width: 56rem;
  }

  .hero-display {
    font-size: clamp(2.7rem, 4.1vw, 3.7rem);
  }

  .hero-lede {
    max-width: 46ch;
  }

  .offer-banner {
    bottom: clamp(0.9rem, 2.4vh, 1.45rem);
  }

  .welcome-section,
  .gallery-section,
  .map-section,
  .membership-feature,
  .investment-showcase,
  .dual-pillar,
  .site-footer {
    padding-block: clamp(2.3rem, 5vh, 4rem);
  }

  .experience-mosaic {
    min-height: clamp(22rem, 38vh, 30rem);
  }

  .gallery-section__grid {
    grid-auto-rows: clamp(7.4rem, 9vw, 9.8rem);
  }
}

/* Daha da kısa yükseklikler (özellikle 13\" yatay, split-screen) */
@media (min-width: 1200px) and (max-height: 760px) {
  .brand-logo {
    width: 206px;
    height: 206px;
  }

  .top-nav.scrolled .brand-logo {
    width: 118px;
    height: 118px;
  }

  .hero-content {
    padding-top: clamp(5.2rem, 8.5vh, 6.8rem);
  }

  .hero-display {
    font-size: clamp(2.35rem, 3.6vw, 3.2rem);
  }

  .nav-link,
  .lang-btn {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
  }

  .service-stack__item {
    padding-block: 0.75rem;
  }
}

@media (min-width: 1024px) and (max-width: 1440px) and (max-height: 900px) {
  .brand-logo {
    width: clamp(188px, 16vw, 226px);
    height: clamp(188px, 16vw, 226px);
  }

  .top-nav.scrolled .brand-logo {
    width: clamp(106px, 9vw, 128px);
    height: clamp(106px, 9vw, 128px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.9);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.05);
  }
}

@keyframes sandDriftOne {
  0% {
    transform: translate3d(-3%, 0, 0);
  }

  100% {
    transform: translate3d(3%, -2%, 0);
  }
}

@keyframes sandDriftTwo {
  0% {
    transform: translate3d(2%, -1%, 0);
  }

  100% {
    transform: translate3d(-4%, 2%, 0);
  }
}

@keyframes sandDriftThree {
  0% {
    transform: translate3d(1%, 2%, 0);
  }

  100% {
    transform: translate3d(-2.5%, -3%, 0);
  }
}

@keyframes mapPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.95;
  }

  70% {
    transform: scale(1.35);
    opacity: 0;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@keyframes mapAreaPulse {
  0% {
    transform: scale(0.94);
    opacity: 0.88;
  }

  70% {
    transform: scale(1.12);
    opacity: 0;
  }

  100% {
    transform: scale(1.12);
    opacity: 0;
  }
}

@keyframes mapCardSwitch {
  0% {
    opacity: 0.72;
    transform: translateY(2px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mapDriftA {

  0%,
  100% {
    transform: translate3d(-4px, 0, 0) scale(0.98);
    opacity: 0.9;
  }

  50% {
    transform: translate3d(8px, -10px, 0) scale(1.06);
    opacity: 1;
  }
}

@keyframes mapDriftB {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.75;
  }

  50% {
    transform: translate3d(-10px, 8px, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes mapSweep {
  0% {
    transform: translateY(-115%);
  }

  100% {
    transform: translateY(370%);
  }
}

.opening::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 92%);
  opacity: 0;
  transition: opacity 1.05s ease;
}

.opening.hidden::after {
  opacity: 1;
}