/* ---------- Tokens ---------- */
:root {
  --pearl: #fbf9f6;
  --ivory: #f4efe7;
  --sand: #e7dccb;
  --sand-deep: #d6c6ad;
  --aqua: #cfe2e1;
  --aqua-soft: #e6efee;
  --mist: #b9c7cf;
  --teal: #1f3a3d;
  --teal-deep: #102426;
  --gold: #b89668;
  --gold-soft: #d9c4a0;
  --ink: #1a1f1f;
  --ink-soft: #3b4544;
  --muted: #6e7878;
  --line: rgba(31, 58, 61, 0.12);
  --line-soft: rgba(31, 58, 61, 0.06);
  --glass: rgba(255, 255, 255, 0.55);
  --glass-strong: rgba(255, 255, 255, 0.78);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-xs: 0 1px 2px rgba(31, 58, 61, 0.04), 0 1px 1px rgba(31, 58, 61, 0.03);
  --shadow-sm: 0 6px 18px -8px rgba(31, 58, 61, 0.10), 0 2px 6px -2px rgba(31, 58, 61, 0.06);
  --shadow-md: 0 20px 40px -20px rgba(31, 58, 61, 0.18), 0 8px 16px -8px rgba(31, 58, 61, 0.08);
  --shadow-lg: 0 40px 80px -30px rgba(31, 58, 61, 0.22), 0 16px 32px -12px rgba(31, 58, 61, 0.10);
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 28px;
  --r-xl: 36px;
  --r-pill: 999px;
  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  /* Spacing — section vertical rhythm */
  --space-section: clamp(72px, 10vw, 140px);
  --space-section-tight: clamp(40px, 5vw, 64px);
  --space-section-block: clamp(40px, 6vw, 72px);
  /* Spacing — vertical stack between text elements */
  --space-stack-xs: 4px;
  --space-stack-sm: 12px;
  --space-stack-md: 18px;
  --space-stack-lg: 24px;
  --space-stack-xl: 32px;
  --space-stack-2xl: 48px;
  /* Spacing — inline gap (row gap) */
  --space-gap-xs: 6px;
  --space-gap-sm: 10px;
  --space-gap-md: 14px;
  --space-gap-lg: 18px;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--pearl);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit
}

input,
select,
textarea {
  font: inherit;
  color: inherit
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--teal-deep);
  margin: 0;
  text-wrap: balance
}

h1 {
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.02em
}

h2 {
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.06
}

h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15
}

h4 {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.25
}

p {
  margin: 0;
  color: var(--ink-soft);
  text-wrap: pretty
}

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

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  display: inline-block
}

.eyebrow.center {
  justify-content: center
}

.lede {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter)
}

section {
  position: relative
}

.section {
  padding: var(--space-section) 0;
  position: relative
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: var(--space-stack-md);
  max-width: 760px;
  margin-bottom: var(--space-section-block)
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  text-align: center
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform .35s ease, box-shadow .35s ease, background .3s ease, color .3s ease, border-color .3s ease, filter .3s ease;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
  transform: translateX(-110%);
  transition: transform .55s cubic-bezier(.22, .8, .25, 1);
  pointer-events: none;
}

.btn:hover::before {
  transform: translateX(110%);
}

.btn .ar {
  width: 14px;
  height: 14px;
  display: inline-block;
  transition: transform .35s ease
}

.btn:hover .ar {
  transform: translateX(4px)
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: var(--pearl);
  box-shadow: 0 10px 24px -10px rgba(31, 58, 61, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.btn-primary:hover {
  box-shadow: 0 16px 36px -12px rgba(31, 58, 61, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.btn-ghost {
  background: transparent;
  color: var(--teal-deep);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.btn-ghost:hover {
  background: var(--glass-strong);
  border-color: var(--teal)
}

.btn-gold {
  background: linear-gradient(135deg, #e5cf9e 0%, var(--gold) 50%, #a98555 100%);
  color: var(--pearl);
  box-shadow: 0 12px 28px -12px rgba(184, 150, 104, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px -12px rgba(184, 150, 104, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  filter: brightness(1.06);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  transition: border-color .3s, color .3s
}

.btn-link:hover {
  border-color: var(--teal);
  color: var(--teal)
}

.btn-link .ar {
  width: 12px;
  height: 12px;
  transition: transform .35s
}

.btn-link:hover .ar {
  transform: translateX(4px)
}

/* Utility classes — token-driven spacing/alignment helpers used by views to
   keep markup free of one-off inline style attributes. Token values come from
   :root above; updating tokens propagates to all utility-using elements. */
.u-mt-stack-xs {
  margin-top: var(--space-stack-xs)
}

.u-mt-stack-sm {
  margin-top: var(--space-stack-sm)
}

.u-mt-stack-md {
  margin-top: var(--space-stack-md)
}

.u-mt-stack-lg {
  margin-top: var(--space-stack-lg)
}

.u-mt-stack-xl {
  margin-top: var(--space-stack-xl)
}

.u-mt-stack-2xl {
  margin-top: var(--space-stack-2xl)
}

.u-text-center {
  text-align: center
}

.u-flex-row-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-gap-md)
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background .35s ease, backdrop-filter .35s ease, box-shadow .35s ease, padding .35s ease
}

.nav.scrolled,
.nav.solid {
  background: rgba(251, 249, 246, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 1px 0 var(--line-soft);
  padding: 12px 0
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--teal-deep)
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--aqua) 0%, var(--mist) 60%, var(--teal) 100%);
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), var(--shadow-xs);
  flex-shrink: 0
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 60%)
}

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

.brand-name b {
  font-weight: 500
}

.brand-name span {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-family: var(--sans);
  color: var(--gold);
  margin-top: 4px
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  position: relative;
  transition: color .3s
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal-deep)
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1)
}

.nav-cta {
  padding: 9px 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  border-radius: 2px;
}

/* Header CTA — daha minimal: gradyan/glow yok, ince çizgi ve subtle fill */
.app-bar .nav-cta.btn-primary,
header .nav-cta.btn-primary,
.nav-cta.btn-primary {
  background: transparent;
  color: var(--aqua);
  border: 1px solid rgba(53, 205, 225, 0.55);
  box-shadow: none;
}

.nav-cta.btn-primary::before {
  display: none;
}

.nav-cta.btn-primary:hover {
  background: rgba(53, 205, 225, 0.08);
  border-color: var(--aqua);
  color: var(--aqua);
  box-shadow: none;
  transform: none;
  filter: none;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--glass-strong)
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--teal-deep);
  position: relative;
  transition: transform .3s, opacity .3s
}

.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--teal-deep);
  transition: transform .3s
}

.menu-btn span::before {
  top: -6px
}

.menu-btn span::after {
  top: 6px
}

.menu-btn.open span {
  background: transparent
}

.menu-btn.open span::before {
  transform: translateY(6px) rotate(45deg)
}

.menu-btn.open span::after {
  transform: translateY(-6px) rotate(-45deg)
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 90vw);
  height: 100vh;
  background:
    radial-gradient(120% 60% at 100% 0%, rgba(53, 205, 225, 0.10) 0%, rgba(53, 205, 225, 0) 60%),
    radial-gradient(80% 60% at 0% 100%, rgba(53, 205, 225, 0.06) 0%, rgba(53, 205, 225, 0) 60%),
    #050d10;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.2, .8, .2, 1);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(53, 205, 225, 0.20);
  box-shadow: -20px 0 40px -10px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0)
}

.mobile-menu a {
  display: flex;
  align-items: center;
  font-family: "Cormorant Garamond", var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.82);
  padding: 16px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  position: relative;
  transition: color .3s ease, padding-left .35s cubic-bezier(.22, .8, .25, 1);
}

.mobile-menu a:last-of-type {
  border-bottom: none
}

/* Hover state — cyan + minik dash accent + sağa hafif kayma */
.mobile-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: var(--aqua);
  transition: width .35s cubic-bezier(.22, .8, .25, 1);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--aqua);
  padding-left: 22px;
}

.mobile-menu a:hover::before,
.mobile-menu a.active::before {
  width: 14px;
  box-shadow: 0 0 6px rgba(53, 205, 225, 0.5);
}

/* Mobile menu üst header — logo + close button */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 24px;
  margin: 0 0 20px;
  border-bottom: 1px solid rgba(53, 205, 225, 0.16);
}

.mobile-menu-brand {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  border-bottom: none !important;
  flex-shrink: 0;
}

.mobile-menu-brand:hover,
.mobile-menu-brand.active {
  padding-left: 0 !important;
  color: inherit !important;
}

.mobile-menu-brand:hover::before,
.mobile-menu-brand.active::before {
  display: none;
}

.mobile-menu-brand img {
  height: 32px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(53, 205, 225, 0.25));
}

.mobile-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(53, 205, 225, 0.28);
  background: rgba(8, 18, 22, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--aqua);
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
  flex-shrink: 0;
}

.mobile-menu-close:hover {
  background: rgba(53, 205, 225, 0.16);
  border-color: var(--aqua);
  transform: rotate(90deg);
}

/* CTA — primary rezervasyon butonu */
.mobile-menu-cta {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 22px 0 0;
  padding: 14px 18px !important;
  background: linear-gradient(135deg, #5ddff0 0%, var(--aqua) 50%, var(--teal-deep) 100%) !important;
  color: #04181c !important;
  border: 1px solid transparent !important;
  border-bottom: none !important;
  border-radius: 2px !important;
  font-family: var(--sans) !important;
  font-style: normal !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  box-shadow: 0 10px 24px -10px rgba(53, 205, 225, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.28) !important;
  transition: transform .25s ease, filter .25s ease !important;
}

.mobile-menu-cta span {
  flex: 1;
}

.mobile-menu-cta::before {
  display: none !important;
}

.mobile-menu-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  padding-left: 18px !important;
}

/* İletişim bilgileri */
.mobile-menu-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 22px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu .mobile-menu-info-row,
a.mobile-menu-info-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans) !important;
  font-style: normal !important;
  font-size: 14.5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 0;
  border: none;
  line-height: 1.2;
  transition: color .25s ease;
}

.mobile-menu-info-row svg {
  width: 14px;
  height: 14px;
}

.mobile-menu-info-row::before {
  display: none !important;
}

.mobile-menu-info-row svg {
  color: var(--aqua);
  flex: none;
}

.mobile-menu-info-row:hover {
  color: var(--aqua);
  padding-left: 0;
}

/* Sosyal ikonlar */
.mobile-menu-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
}

.mobile-menu-social a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 50%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10) !important;
  color: rgba(255, 255, 255, 0.60) !important;
  font-style: normal !important;
  transition: color .25s, border-color .25s, background .25s !important;
}

.mobile-menu-social a::before {
  display: none !important;
}

.mobile-menu-social a:hover {
  color: var(--aqua) !important;
  border-color: rgba(53, 205, 225, 0.35) !important;
  background: rgba(53, 205, 225, 0.06);
  padding-left: 0 !important;
}

/* Alt CTA + dil switcher kabuğu */
.mobile-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: auto;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-lang a {
  font-family: var(--sans) !important;
  font-style: normal !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.20em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.45) !important;
  padding: 8px 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 2px !important;
  transition: color .25s, border-color .25s, background .25s !important;
}

.mobile-lang a::before {
  display: none !important;
}

.mobile-lang a:hover {
  color: rgba(255, 255, 255, 0.85) !important;
  border-color: rgba(53, 205, 225, 0.35) !important;
  background: rgba(53, 205, 225, 0.04) !important;
  padding-left: 14px !important;
}

.mobile-lang a.is-active {
  color: var(--aqua) !important;
  border-color: rgba(53, 205, 225, 0.45) !important;
  background: rgba(53, 205, 225, 0.08) !important;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(2, 6, 10, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto
}

/* Page Header (shared across inner pages) */
.page-head {
  position: relative;
  padding: 160px 0 80px;
  background: radial-gradient(80% 60% at 80% 20%, rgba(207, 226, 225, 0.55), rgba(207, 226, 225, 0) 60%), radial-gradient(60% 60% at 10% 90%, rgba(217, 196, 160, 0.35), rgba(217, 196, 160, 0) 60%), linear-gradient(180deg, var(--pearl) 0%, var(--ivory) 100%);
  overflow: hidden
}

.page-head .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
  pointer-events: none
}

.page-head .blob.b1 {
  width: 520px;
  height: 520px;
  top: -160px;
  right: -120px;
  background: linear-gradient(135deg, var(--aqua), var(--mist))
}

.page-head .blob.b2 {
  width: 380px;
  height: 380px;
  bottom: -160px;
  left: -100px;
  background: linear-gradient(135deg, var(--gold-soft), var(--sand))
}

.page-head-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end
}

.page-head-inner.center {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center
}

.crumbs {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
  margin-bottom: 20px
}

.crumbs>* {
  white-space: nowrap;
}

.crumbs a:hover {
  color: var(--teal)
}

.crumbs span {
  color: var(--gold)
}

.page-head h1 {
  font-size: clamp(48px, 7vw, 88px)
}

.page-head h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300
}

.page-head .lede {
  margin-top: 24px
}

.page-head-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 8px
}

.page-head-meta .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft)
}

.page-head-meta .row:last-child {
  border-bottom: none
}

.page-head-meta .row b {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--teal-deep);
  font-weight: 500
}

.page-head-meta .row span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted)
}

/* Buttons section */
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px
}

/* About visual block */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start
}

.about-grid>.reveal:last-child {
  padding-top: 60px;
}

/* Geniş ekranlarda image kolonu sayfanın sol kenarına bleed eder */
@media (min-width: 1100px) {

  .about-grid .about-visual,
  .about-grid .about-visual-duo {
    margin-left: calc(-1 * var(--gutter));
  }
}

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: radial-gradient(80% 60% at 30% 20%, rgba(255, 255, 255, 0.4), transparent 50%), linear-gradient(170deg, var(--sand) 0%, #c8b896 50%, #8a7c5e 100%);
  box-shadow: var(--shadow-lg)
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--r-lg)
}

.about-visual::after {
  content: "";
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  bottom: -15%;
  right: -15%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 60%)
}

.about-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Services */
.services-bg {
  background: linear-gradient(180deg, var(--pearl) 0%, var(--ivory) 100%)
}

.services-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px
}







/* Final CTA */
.cta-section {
  padding: 0
}

.cta-card {
  margin: 80px auto;
  max-width: 1280px;
  background: radial-gradient(50% 60% at 80% 30%, rgba(207, 226, 225, 0.18), transparent 60%), radial-gradient(60% 50% at 0% 100%, rgba(217, 196, 160, 0.14), transparent 60%), linear-gradient(160deg, var(--teal-deep) 0%, var(--teal) 100%);
  border-radius: var(--r-xl);
  padding: clamp(60px, 8vw, 110px) clamp(40px, 6vw, 90px);
  color: var(--pearl);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center
}

.cta-card::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -300px;
  right: -200px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 60px rgba(255, 255, 255, 0.03), inset 0 0 0 130px rgba(255, 255, 255, 0.02)
}

.cta-card h2 {
  color: var(--pearl);
  font-size: clamp(40px, 5vw, 72px)
}

.cta-card p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 18px;
  max-width: 50ch
}

.cta-card-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 2
}

.cta-card .btn-gold {
  box-shadow: none
}

.cta-card .btn-ghost {
  background: transparent;
  color: var(--pearl);
  border-color: rgba(255, 255, 255, 0.2)
}

.cta-card .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4)
}

/* Footer */
.footer {
  background: var(--pearl);
  border-top: 1px solid var(--line-soft);
  padding: 80px 0 32px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 48px
}

.footer-col h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 22px
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer-col a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color .3s
}

.footer-col a:hover {
  color: var(--teal-deep)
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 18px;
  max-width: 30ch
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-deep);
  transition: background .3s, color .3s, border-color .3s
}

.footer-social a:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal)
}

.footer-social svg {
  width: 14px;
  height: 14px
}

.newsletter {
  display: flex;
  gap: 8px;
  padding: 6px;
  background: var(--ivory);
  border-radius: var(--r-pill);
  border: 1px solid var(--line-soft)
}

.newsletter input {
  flex: 1;
  padding: 10px 16px;
  background: transparent;
  border: none;
  font-size: 14px;
  outline: none
}

.newsletter button {
  padding: 10px 18px;
  background: var(--teal);
  color: var(--pearl);
  border-radius: var(--r-pill);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background .3s
}

.newsletter button:hover {
  background: var(--teal-deep)
}

.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: var(--muted)
}

.footer-bottom .legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .footer-bottom .legal {
    justify-content: center;
    gap: 16px 20px;
  }

  .footer-credit {
    margin-top: 4px;
  }
}

/* Hero (homepage) */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 120px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: radial-gradient(80% 60% at 80% 20%, rgba(207, 226, 225, 0.55), rgba(207, 226, 225, 0) 60%), radial-gradient(60% 60% at 10% 90%, rgba(217, 196, 160, 0.35), rgba(217, 196, 160, 0) 60%), linear-gradient(180deg, var(--pearl) 0%, var(--ivory) 100%)
}

.hero>.container {
  width: 100%;
}

.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5
}

.blob.b1 {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -120px;
  background: linear-gradient(135deg, var(--aqua), var(--mist))
}

.blob.b2 {
  width: 420px;
  height: 420px;
  bottom: -100px;
  left: -80px;
  background: linear-gradient(135deg, var(--gold-soft), var(--sand))
}

.blob.b3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 50%;
  background: radial-gradient(circle, rgba(207, 226, 225, 0.6), transparent 60%);
  filter: blur(60px)
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 32px
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft)
}

@media (max-width: 720px) {
  .hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .hero-meta .m b {
    font-size: 22px;
  }

  .hero-meta .m span {
    font-size: 10px;
    letter-spacing: 0.16em;
  }
}

.hero-meta .m {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.hero-meta .m b {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--teal-deep);
  font-weight: 500
}

.hero-meta .m span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted)
}

.hero-visual {
  position: relative;
  height: 620px
}

.hero-card {
  position: absolute;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg)
}

.hero-card.main {
  inset: 0 20px 60px 0;
  background: radial-gradient(120% 80% at 30% 20%, rgba(255, 255, 255, 0.55), transparent 50%), linear-gradient(160deg, #c6dad9 0%, #8aa9ad 50%, #3a5b5e 100%)
}

.hero-card.main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 30% at 70% 70%, rgba(255, 255, 255, 0.25), transparent 70%), repeating-linear-gradient(180deg, transparent 0, transparent 10px, rgba(255, 255, 255, 0.04) 10px, rgba(255, 255, 255, 0.04) 11px)
}

.hero-card.main::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -150px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 40px rgba(255, 255, 255, 0.05), inset 0 0 0 80px rgba(255, 255, 255, 0.03), inset 0 0 0 140px rgba(255, 255, 255, 0.04), inset 0 0 0 200px rgba(255, 255, 255, 0.02)
}

.hero-glass {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 60px;
  padding: 22px 26px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff
}

.hero-glass .e {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7)
}

.hero-glass h4 {
  color: #fff;
  font-size: 22px
}

.hero-glass p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px
}

.hero-card.acc {
  width: 200px;
  height: 240px;
  bottom: 0;
  right: 0;
  background: linear-gradient(160deg, var(--ivory), var(--sand));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  box-shadow: var(--shadow-md)
}

.hero-card.acc .pill {
  align-self: flex-start;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.5)
}

.hero-card.acc .body b {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--teal-deep);
  line-height: 1
}

.hero-card.acc .body span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted)
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease
}

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

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.contact-block {
  padding: 28px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  background: #fff
}

.contact-block h4 {
  margin-bottom: 12px
}

.contact-block p {
  font-size: 14px;
  line-height: 1.7
}

.contact-row {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--ink-soft)
}

.contact-row:first-of-type {
  border-top: none
}

.contact-row b {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 80px;
  font-weight: 500
}

/* Lang switcher + menu butonu sağda grup */
.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-left: -50px;
}

/* Responsive */
@media (max-width:1080px) {

  .nav-links,
  .nav-cta-wrap {
    display: none
  }

  .menu-btn {
    display: flex
  }

  /* Dil switcher mobilde menu-btn'in solunda, kompakt */
  .lang-switcher {
    margin: 0;
    padding: 7px 10px;
    font-size: 10px;
    letter-spacing: 0.14em;
    gap: 5px;
  }

  .hero-grid,
  .about-grid,
  .exp-grid,
  .branches-grid,
  .booking-grid,
  .contact-grid,
  .page-head-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .about-grid>.reveal:last-child {
    padding-top: 0;
  }

  .about-visual {
    aspect-ratio: 4/3;
  }

  .page-head-inner {
    align-items: start
  }

  .hero-visual {
    height: 480px
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .services-head {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start
  }

  .pkg-grid,
  .pkg-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr)
  }

  .pkg {
    min-height: auto
  }

  .form {
    padding: 32px
  }

  .t-grid,
  .values {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px
  }

  .footer-col.newsletter-col {
    grid-column: span 3
  }

  .cta-card {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .booking-aside {
    position: static
  }

  .service-row,
  .service-row.flip {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .service-row.flip .service-row-img {
    order: 0
  }
}

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

  .pkg-grid,
  .pkg-grid.cols-3 {
    grid-template-columns: 1fr
  }

  .form {
    grid-template-columns: 1fr;
    padding: 28px
  }

  .field.full,
  .form-foot,
  .form-success {
    grid-column: span 1
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-col.newsletter-col {
    grid-column: span 1
  }

  .branch {
    grid-template-rows: 180px auto
  }

  .branch-body {
    padding: 24px
  }

}

/* ====== Aqua Plus extensions: language switcher / flash / mobile lang ====== */
.lang-switcher {
  margin-left: 14px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: transparent;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: color .3s, border-color .3s, background .3s;
}

.lang-switcher:hover {
  color: var(--teal-deep);
  border-color: var(--teal);
  background: rgba(31, 58, 61, 0.04);
}

.lang-switcher-current {
  color: var(--teal-deep);
  font-weight: 500
}

.lang-switcher-divider {
  opacity: .35
}

.mobile-lang {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft)
}

.mobile-lang a {
  font-size: 14px;
  color: var(--ink-soft);
  font-family: var(--sans);
  padding: 0;
  border-bottom: none
}

.mobile-lang a.is-active {
  color: var(--teal-deep);
  font-weight: 500
}

.lede a {
  color: var(--gold);
  border-bottom: 1px solid currentColor
}

/* Dynamic hero with cover image */
.page-head.has-cover {
  padding: 200px 0 110px;
  color: var(--ink)
}

.page-head.has-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(251, 249, 246, 0) 0%, rgba(251, 249, 246, 0.85) 100%);
  pointer-events: none
}

.page-head.has-cover .container {
  position: relative;
  z-index: 2
}

.page-head.has-cover h1 {
  text-shadow: 0 2px 24px rgba(255, 255, 255, 0.4)
}

/* Page-head center mode: crumbs/lede also centered */
.page-head-inner.center .crumbs {
  justify-content: center
}

.page-head-inner.center .lede {
  margin-left: auto;
  margin-right: auto;
  text-align: center
}

/* Italic em kelimelerin etrafında nefes alacak boşluk + parent'ın negatif letter-spacing'inden bağımsız */
h1 em,
h2 em,
h3 em,
.page-head h1 em,
.bk-hero-title em {
  margin: 0 0.06em;
  letter-spacing: 0;
  font-style: italic;
}

.page-head h1 em {
  color: var(--gold);
  font-weight: 300
}

/* Tek satırlık başlıklar İçin satırlar arası nefes (br ile zorlanmış kırılmalarda) */
.page-head h1 br+em,
.page-head h1 em+br {
  margin-top: 0.02em
}

/* Eyebrow ile başlık arasına nefes ekle (hero ve sayfa başlığı) */
.page-head .eyebrow+h1 {
  margin-top: 24px
}

.page-head .crumbs {
  margin-bottom: 18px
}

.page-head h1+.lede {
  margin-top: 24px
}

/* Booking hero için aynı ritim */
.bk-hero .bk-hero-eyebrow+.bk-hero-title {
  margin-top: 20px
}

.bk-hero .bk-hero-title+.bk-hero-lede {
  margin-top: 22px
}

/* === Genel form bileşenleri (booking + contact + her yer) === */
.ap-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

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

.ap-form-grid .full,
.ap-form-grid .bk-field.full {
  grid-column: 1/-1
}

.bk-field {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.bk-field span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500
}

.bk-field input,
.bk-field select,
.bk-field textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
  width: 100%
}

.bk-field input:focus,
.bk-field select:focus,
.bk-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(31, 58, 61, 0.08)
}

.bk-field textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--sans)
}

.bk-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink-soft);
  grid-column: 1/-1;
  line-height: 1.55
}

.bk-check input {
  margin-top: 3px;
  flex-shrink: 0
}

.bk-check a {
  color: var(--gold);
  border-bottom: 1px solid currentColor
}

/* === Brand logo (navbar + footer) === */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0
}

.brand-logo {
  height: 42px;
  width: auto;
  display: block;
  transition: height .35s ease
}

.nav.scrolled .brand-logo,
.nav.solid .brand-logo {
  height: 36px
}

.brand-logo-footer {
  height: 54px;
  margin-bottom: 18px
}

@media (max-width:720px) {
  .brand-logo {
    height: 34px
  }

  .nav.scrolled .brand-logo,
  .nav.solid .brand-logo {
    height: 30px
  }
}

/* =========================================================
   Atlas — anasayfa interaktif hizmet çarkı
   Tüm seçiciler .atlas-* namespace'inde; sızıntı yok.
   ========================================================= */

.atlas-section {
  position: relative;
  background:
    radial-gradient(circle at 18% 12%, rgba(53, 205, 225, .08), transparent 55%),
    radial-gradient(circle at 86% 78%, rgba(53, 205, 225, .06), transparent 60%),
    var(--bg, #0a1518);
  overflow: hidden;
}

.atlas {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.4fr);
  gap: 60px 70px;
  align-items: center;
}

.atlas-intro {
  max-width: 460px;
}

.atlas-intro h2 {
  letter-spacing: -.02em;
}

.atlas-highlights {
  list-style: none;
  margin-bottom: 0;
  margin-inline: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.atlas-highlight {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 14px;
  row-gap: 2px;
  padding: 0;
}

.atlas-highlight-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(53, 205, 225, .08);
  color: #35cde1;
}

.atlas-highlight-icon svg {
  width: 18px;
  height: 18px;
}

.atlas-highlight b {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  display: block;
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, .92);
  line-height: 1.25;
}

.atlas-highlight-desc {
  grid-column: 2;
  grid-row: 2;
  display: block;
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.45;
}

.atlas-explore {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(53, 205, 225, .25);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(53, 205, 225, .05), rgba(53, 205, 225, .02));
  text-decoration: none;
  color: inherit;
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}

.atlas-explore:hover {
  border-color: rgba(53, 205, 225, .55);
  background: linear-gradient(135deg, rgba(53, 205, 225, .12), rgba(53, 205, 225, .04));
  transform: translateY(-2px);
}

.atlas-explore .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #35cde1;
}

/* Yatay çizgi yerine belirgin cyan su damlası ikonu */
.atlas-explore .eyebrow::before {
  content: "";
  width: 16px;
  height: 20px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335cde1' stroke-width='1.6' stroke-linejoin='round'><path d='M12 3c2.5 4 5.5 7 5.5 11a5.5 5.5 0 1 1-11 0c0-4 3-7 5.5-11z'/></svg>") no-repeat center / contain;
  flex-shrink: 0;
}

.atlas-explore em {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: .82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .65);
}

.atlas-explore-arrow {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #35cde1;
  color: #0a1518;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease;
}

.atlas-explore:hover .atlas-explore-arrow {
  transform: translateX(3px);
}

/* ===== Stage (right column wheel) ===== */
.atlas-stage {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  --atlas-radius: 48%;
}

.atlas-ring {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1px dashed rgba(53, 205, 225, .12);
  pointer-events: none;
}

.atlas-ring::before,
.atlas-ring::after {
  content: '';
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .03);
}

.atlas-ring::after {
  inset: 26%;
}

/* Track wrapper — desktop'ta layout-transparent, mobilde yatay scroll container */
.atlas-node-track {
  display: contents;
}

/* Wheel nodes — pozisyon trigonometrik (cos/sin); şekil SVG path ile çizilir */
.atlas-node {
  --angle: calc((var(--atlas-i) - 1) * (360deg / var(--atlas-n, 12)) - 90deg);
  position: absolute;
  left: calc(50% + var(--atlas-radius, 48%) * cos(var(--angle)));
  top: calc(50% + var(--atlas-radius, 48%) * sin(var(--angle)));
  width: 118px;
  height: 116px;
  margin: 0;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: none;
  color: rgba(255, 255, 255, .78);
  font: inherit;
  text-align: center;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: color .25s ease;
}

.atlas-node:focus,
.atlas-node:focus-visible {
  outline: none;
}

/* SVG blob şekli — node'un arkasında konumlanır, fill+stroke ile çizer */
.atlas-node-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.atlas-node-shape path {
  fill: rgba(20, 36, 42, .85);
  stroke: rgba(255, 255, 255, .08);
  stroke-width: 0.5;
  vector-effect: non-scaling-stroke;
  transition: fill .25s ease, stroke .25s ease, stroke-width .25s ease;
}

.atlas-node:hover .atlas-node-shape path {
  fill: rgba(28, 50, 56, .9);
  stroke: rgba(53, 205, 225, .35);
  stroke-width: 1;
}

.atlas-node.is-active .atlas-node-shape path {
  fill: rgba(20, 60, 70, .95);
  stroke: rgba(53, 205, 225, .85);
  stroke-width: 1.4;
}

/* Node içeriği SVG'nin üzerinde kalır */
.atlas-node>:not(.atlas-node-shape) {
  position: relative;
  z-index: 1;
}

/* Boyut varyasyonları — her path farklı bir orana stretch olur, organik hisse katkı */
.atlas-stage .atlas-node:nth-child(8n+1) {
  width: 122px;
  height: 112px;
}

.atlas-stage .atlas-node:nth-child(8n+2) {
  width: 116px;
  height: 122px;
}

.atlas-stage .atlas-node:nth-child(8n+3) {
  width: 124px;
  height: 110px;
}

.atlas-stage .atlas-node:nth-child(8n+4) {
  width: 114px;
  height: 118px;
}

.atlas-stage .atlas-node:nth-child(8n+5) {
  width: 120px;
  height: 114px;
}

.atlas-stage .atlas-node:nth-child(8n+6) {
  width: 118px;
  height: 124px;
}

.atlas-stage .atlas-node:nth-child(8n+7) {
  width: 126px;
  height: 116px;
}

.atlas-stage .atlas-node:nth-child(8n) {
  width: 116px;
  height: 120px;
}

.atlas-node:hover {
  color: #fff;
}

.atlas-node.is-active {
  color: #fff;
}

.atlas-node-num {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .12em;
  color: rgba(53, 205, 225, .8);
}

.atlas-node-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: rgba(53, 205, 225, .85);
}

.atlas-node-icon svg {
  width: 100%;
  height: 100%;
}

.atlas-node-name {
  font-size: .72rem;
  line-height: 1.2;
  letter-spacing: .01em;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== Center preview card — SVG path tabanlı organic blob ===== */
.atlas-preview {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72%;
  max-width: 540px;
  min-height: 350px;
  transform: translate(-50%, -50%);
  background: transparent;
  border: 0;
  border-radius: 0;
  pointer-events: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .7));
}

.atlas-preview-fill {
  min-height: 350px;
}

/* Clip'li içerik konteyneri — body + cover blob şekline clip edilir */
.atlas-preview-fill {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: stretch;
  background: linear-gradient(180deg, rgba(14, 28, 32, .96), rgba(8, 18, 22, .96));
  clip-path: url(#atlas-preview-clip);
  -webkit-clip-path: url(#atlas-preview-clip);
}

/* Stroke SVG — clip dışında, blob outline'ını cyan stroke ile çizer */
.atlas-preview-stroke {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 4;
}

.atlas-preview-stroke path {
  fill: none;
  stroke: rgba(53, 205, 225, .75);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.atlas-svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}

.atlas-preview-num {
  font-size: .8rem;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .55);
  font-weight: 500;
  margin-bottom: 14px;
}

.atlas-preview-cover {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

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

.atlas-preview-body {
  padding: 32px 18px 36px 48px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.atlas-preview-body h3 {
  margin: 0;
  font-family: var(--ff-serif, 'Cormorant Garamond', serif);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.005em;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.atlas-preview-body p {
  margin: 0;
  font-size: .82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, .62);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.atlas-preview-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

/* Tek clock ikonu + her süre için mini chip */
.atlas-preview-durations {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .78);
}

.atlas-preview-durations[hidden] {
  display: none;
}

.atlas-preview-durations>svg {
  flex: 0 0 13px;
  color: #35cde1;
}

.atlas-duration-chip {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(53, 205, 225, .08);
  border: 1px solid rgba(53, 205, 225, .22);
  color: rgba(255, 255, 255, .85);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .02em;
  white-space: nowrap;
}

.atlas-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .78);
}

.atlas-pill svg {
  flex: 0 0 13px;
  color: #35cde1;
}

.atlas-pill--price {
  font-size: .98rem;
  font-weight: 500;
  color: #fff;
}

.atlas-pill[hidden] {
  display: none;
}

.atlas-preview-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 12px 0 0;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #35cde1;
  text-decoration: none;
  border-top: 1px solid rgba(255, 255, 255, .08);
  transition: gap .2s ease;
}

.atlas-preview-cta:hover {
  gap: 12px;
}

.atlas-preview-cta svg {
  transition: transform .2s ease;
}

.atlas-preview-cta:hover svg {
  transform: translateX(2px);
}

/* ===== Responsive: tablet ===== */
@media (max-width: 1100px) {
  .atlas {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .atlas-intro {
    max-width: none;
    text-align: left;
  }

  .atlas-stage {
    max-width: 600px;
  }
}

/* ===== Responsive: mobile (preview kart üstte, hizmetler yatay scroll şeridi) ===== */
@media (max-width: 760px) {

  /* Grid item (atlas-stage) ve flex item (track) için min-width:0 zinciri —
     yoksa scroll içeriği parent'ı viewport'tan dışarı iter. */
  .atlas {
    min-width: 0;
  }

  .atlas-stage {
    aspect-ratio: auto;
    max-width: none;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
  }

  .atlas-ring {
    display: none;
  }

  .atlas-preview {
    position: static;
    transform: none;
    width: 100%;
    max-width: none;
    min-height: 0;
    order: 1;
    filter: none;
  }

  .atlas-preview-fill {
    display: flex;
    flex-direction: column;
    min-height: 0;
    background: linear-gradient(180deg, rgba(14, 28, 32, .96), rgba(8, 18, 22, .96));
    border: 1px solid rgba(53, 205, 225, .35);
    border-radius: 18px;
    overflow: hidden;
    /* clipPath devre dışı — basit rounded rect */
    clip-path: none;
    -webkit-clip-path: none;
  }

  .atlas-preview-stroke {
    display: none;
  }

  .atlas-preview-cover {
    aspect-ratio: 16/10;
    order: 1;
  }

  .atlas-preview-body {
    order: 2;
    padding: 22px 18px;
  }

  .atlas-preview-body h3 {
    font-size: 1.25rem;
  }

  /* .atlas-node-track artık gerçek bir flex container — display:contents override edilir */
  .atlas-node-track {
    display: flex;
    width: 100%;
    min-width: 0;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 4px 0 12px;
    order: 2;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(53, 205, 225, .3) transparent;
  }

  .atlas-node-track::-webkit-scrollbar {
    height: 4px;
  }

  .atlas-node-track::-webkit-scrollbar-thumb {
    background: rgba(53, 205, 225, .3);
    border-radius: 4px;
  }

  /* Mobilde node'lar sabit boyutlu kart, mutlak konumlama yok */
  .atlas-node-track .atlas-node {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    flex: 0 0 130px;
    width: 130px;
    height: 120px;
    border-radius: 16px;
    scroll-snap-align: start;
  }

  .atlas-node-track .atlas-node.is-active {
    transform: none;
  }
}