:root {
  --paper: #faf8f4;
  --paper-deep: #f4efe6;
  --petrol: #0f6b7a;
  --navy: #0a2b3d;
  --navy-2: #062334;
  --gold: #c89b4a;
  --gold-light: #e5bd6c;
  --gold-dark: #9a6928;
  --ink: #2b2b28;
  --muted: #6e706c;
  --white: #fff;
  --radius: 22px;
  --shadow: 0 20px 54px rgba(17, 34, 44, .09);
  --soft-shadow: 0 12px 32px rgba(17, 34, 44, .06);
  --container: 1380px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.65;
  letter-spacing: .003em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "liga" 1, "kern" 1;
  background:
    radial-gradient(circle at 7% 7%, rgba(200,155,74,.07), transparent 27%),
    radial-gradient(circle at 96% 15%, rgba(15,107,122,.045), transparent 24%),
    repeating-linear-gradient(90deg, rgba(70,55,35,.012) 0 1px, transparent 1px 4px),
    var(--paper);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible,
.button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--petrol);
  outline-offset: 3px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 66px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(10,43,61,.07);
  background: rgba(250,248,244,.88);
  backdrop-filter: blur(18px);
  transition: box-shadow .35s ease, background .35s ease, border-color .35s ease;
}
.site-header.is-scrolled {
  border-bottom-color: rgba(10,43,61,.03);
  background: rgba(250,248,244,.97);
  box-shadow: 0 10px 30px rgba(10,43,61,.08);
}
.nav-wrap {
  min-height: 94px;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 28px;
  transition: min-height .35s ease;
}
.site-header.is-scrolled .nav-wrap { min-height: 74px; }
.brand img { width: 235px; max-height: 70px; object-fit: contain; transition: width .35s ease; }
.site-header.is-scrolled .brand img { width: 195px; }
.desktop-nav { position: relative; display: flex; justify-content: center; gap: clamp(14px, 1.6vw, 28px); }
.nav-highlight {
  position: absolute;
  top: 50%;
  left: 0;
  height: 38px;
  width: 0;
  z-index: 0;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(200,155,74,.16), rgba(200,155,74,.1));
  border: 1px solid rgba(200,155,74,.22);
  opacity: 0;
  transform: translateY(-50%);
  transition: left .38s cubic-bezier(.22,.8,.24,1), width .38s cubic-bezier(.22,.8,.24,1), opacity .2s ease;
  pointer-events: none;
}
.desktop-nav a {
  position: relative;
  z-index: 1;
  padding: 4px 2px;
  font-size: clamp(14.5px, .95vw, 15.5px);
  font-weight: 700;
  color: #243746;
  white-space: nowrap;
  transition: color .2s ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
  transition: .25s ease;
}
.desktop-nav a:hover { color: var(--gold-dark); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { width: 100%; }
.mobile-nav { display: none; }
.mobile-nav summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(10,43,61,.12);
  background: rgba(255,255,255,.6);
  transition: background .2s ease, border-color .2s ease;
}
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary::marker { content: ""; }
.mobile-nav summary:hover { background: rgba(255,255,255,.9); border-color: var(--gold); }
.hamburger-icon { position: relative; width: 20px; height: 14px; flex: 0 0 auto; }
.hamburger-icon span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform .28s ease, opacity .2s ease, top .28s ease;
}
.hamburger-icon span:nth-child(1) { top: 0; }
.hamburger-icon span:nth-child(2) { top: 6px; }
.hamburger-icon span:nth-child(3) { top: 12px; }
.mobile-nav[open] summary { background: var(--navy); border-color: var(--navy); }
.mobile-nav[open] .hamburger-icon span { background: white; }
.mobile-nav[open] .hamburger-icon span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.mobile-nav[open] .hamburger-icon span:nth-child(2) { opacity: 0; }
.mobile-nav[open] .hamburger-icon span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 27px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .015em;
  white-space: nowrap;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
}
.button:hover { transform: translateY(-3px); }
.button:active { transform: translateY(-1px); }
.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
  pointer-events: none;
}
.button:hover::before { left: 130%; }
.button-primary {
  color: white;
  border: 1px solid rgba(200,155,74,.35);
  background: linear-gradient(135deg, #0d5368, #062b40);
  box-shadow: 0 10px 20px rgba(10,43,61,.18), 0 20px 40px rgba(10,43,61,.16), inset 0 1px 0 rgba(255,255,255,.12);
}
.button-primary:hover {
  box-shadow: 0 14px 26px rgba(10,43,61,.22), 0 26px 48px rgba(10,43,61,.2), inset 0 1px 0 rgba(255,255,255,.16);
}
.button-outline {
  border: 1px solid var(--gold);
  background: rgba(255,255,255,.48);
  color: #163243;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, background .3s ease, border-color .3s ease;
}
.button-outline:hover {
  background: rgba(255,255,255,.92);
  border-color: var(--gold-dark);
  box-shadow: 0 12px 24px rgba(154,105,40,.14);
}
.button-gold {
  color: white;
  border: 1px solid rgba(255,255,255,.22);
  background: linear-gradient(115deg, var(--gold-light), var(--gold-dark) 47%, #d5a54b);
  box-shadow: 0 10px 18px rgba(200,155,74,.22), 0 18px 34px rgba(200,155,74,.22), inset 0 1px 0 rgba(255,255,255,.35);
}
.button-gold:hover {
  box-shadow: 0 14px 24px rgba(200,155,74,.28), 0 24px 42px rgba(200,155,74,.26), inset 0 1px 0 rgba(255,255,255,.4);
}
.arrow { flex: 0 0 auto; font-size: 20px; line-height: 1; display: inline-block; transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.button:hover .arrow { transform: translateX(5px); }

.hero { padding: 34px 0 0; overflow: hidden; }
.hero-grid {
  min-height: 610px;
  display: grid;
  grid-template-columns: .93fr 1.07fr;
  align-items: center;
}
.hero-copy { padding: 48px 55px 48px 0; position: relative; z-index: 2; }
.eyebrow, .section-kicker {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #896c3a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .23em;
  text-transform: uppercase;
}
.eyebrow::after, .section-kicker::after {
  content: "";
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero h1, .section-heading h2, .center-title h2, .contact-band h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-feature-settings: "liga" 1, "kern" 1;
}
.hero h1 {
  margin: 18px 0 20px;
  font-size: clamp(54px, 6.1vw, 88px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -.035em;
}
.hero h1 span {
  display: block;
  color: var(--petrol);
  position: relative;
  width: max-content;
  max-width: 100%;
  font-size: clamp(30px, 3.6vw, 52px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.hero h1 span::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 0;
  bottom: 5px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, var(--gold-light) 15%, var(--gold-dark) 66%, transparent);
  transform: rotate(-1.4deg);
  opacity: .84;
}
.hero-copy p { max-width: 690px; color: #565954; font-size: 16px; margin: 0 0 10px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 30px; }
.mini-trust { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 25px; color: #40515a; font-size: 13px; font-weight: 600; }
.mini-trust span { display: flex; align-items: center; gap: 8px; }

.hero-photo {
  height: 610px;
  position: relative;
  overflow: hidden;
  border-radius: 53% 0 0 49% / 58% 0 0 42%;
  filter: drop-shadow(0 25px 35px rgba(58,40,22,.1));
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 92px;
  background: linear-gradient(90deg, var(--paper), rgba(250,248,244,.75), transparent);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-slider { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: background .25s ease, width .25s ease;
}
.hero-slider-dots button.is-active { background: var(--gold-light); width: 22px; border-radius: 5px; border-color: var(--gold-light); }
.hero-outline {
  position: absolute;
  inset: 3px 0 3px 3px;
  border-left: 1px solid rgba(200,155,74,.85);
  border-top: 1px solid rgba(200,155,74,.55);
  border-radius: inherit;
  pointer-events: none;
}

.trust-strip, .contact-band-inner {
  color: white;
  background: linear-gradient(125deg, #0d4b61, var(--navy-2));
  border: 1px solid rgba(200,155,74,.7);
  box-shadow: 0 12px 26px rgba(10,43,61,.14);
}
.trust-strip {
  isolation: isolate;
  position: relative;
  z-index: 3;
  margin-top: -26px;
  padding: 23px 30px;
  border-radius: 23px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-strip article {
  padding: 4px 25px;
  display: flex;
  align-items: center;
  gap: 17px;
  border-right: 1px solid rgba(255,255,255,.13);
}
.trust-strip article:last-child { border: 0; }
.trust-strip h2 { font: 600 21px/1.1 "Playfair Display", serif; margin: 0 0 6px; }
.trust-strip p { color: rgba(255,255,255,.76); font-size: 12px; line-height: 1.35; margin: 0; }

/* ============ Trust Strip - Premium Reveal Animasyonları ============ */
.trust-card {
  position: relative;
  opacity: 0;
  transform: translateY(25px);
  filter: blur(6px);
  transition:
    opacity .7s cubic-bezier(.22,1,.36,1),
    transform .7s cubic-bezier(.22,1,.36,1),
    filter .7s cubic-bezier(.22,1,.36,1),
    border-color .3s ease;
  transition-delay: calc(var(--i, 0) * 150ms);
}
.trust-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Kart üzerinden geçen tek seferlik, çok hafif ışık parlaması (background-position ile; taşma/kırpma gerektirmez) */
.trust-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.14) 50%, transparent 70%);
  background-size: 250% 100%;
  background-position: 200% 0;
  opacity: 0;
}
.trust-card.is-visible::after {
  animation: trustShine 1.2s ease calc(var(--i, 0) * 150ms + .2s) 1;
}
@keyframes trustShine {
  0% { opacity: 1; background-position: 200% 0; }
  100% { opacity: 0; background-position: -50% 0; }
}

/* İkon çevresinde sürekli, çok hafif altın "nefes" parlaması (yalnızca göründükten sonra başlar) */
.trust-card.is-visible .strip-icon {
  transition: transform .3s ease, box-shadow .3s ease;
  animation: trustIconBreathe 2.8s ease-in-out calc(var(--i, 0) * 150ms + .9s) infinite;
}
@keyframes trustIconBreathe {
  0%, 100% { box-shadow: 0 0 0 1px rgba(200,155,74,.42), 0 0 0 rgba(200,155,74,0); }
  50% { box-shadow: 0 0 0 1px rgba(200,155,74,.62), 0 0 10px rgba(200,155,74,.32); }
}

/* Başlığın altında soldan sağa açılan ince altın çizgi */
.trust-card h2 { position: relative; display: inline-block; }
.trust-card h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
}
.trust-card.is-visible h2::after {
  animation: trustUnderline .6s cubic-bezier(.22,1,.36,1) calc(var(--i, 0) * 150ms + .5s) forwards;
}
@keyframes trustUnderline {
  to { width: 100%; }
}

/* Hover davranışları yalnızca fare/imleç destekli cihazlarda (mobilde hover kapalı) */
@media (hover: hover) and (pointer: fine) {
  .trust-card.is-visible:hover { transform: translateY(-5px); border-right-color: rgba(200,155,74,.55); }
  .trust-card.is-visible:hover .strip-icon { transform: scale(1.08); }
}

/* prefers-reduced-motion: tüm animasyonları kapat, son hâli anında göster */
@media (prefers-reduced-motion: reduce) {
  .trust-card, .trust-card.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .trust-card::after,
  .trust-card.is-visible::after { display: none; animation: none; }
  .trust-card .strip-icon,
  .trust-card.is-visible .strip-icon { animation: none; }
  .trust-card h2::after,
  .trust-card.is-visible h2::after { animation: none; width: 100%; }
}

/* Mobilde daha sade: blur kaldırılır, hareket mesafesi azalır, ambiyans efektleri kapanır */
@media (max-width: 720px) {
  .trust-card { filter: none; transform: translateY(14px); }
  .trust-card::after { display: none; }
  .trust-card.is-visible .strip-icon { animation: none; }
}

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mini-trust .icon { width: 18px; height: 18px; color: var(--gold-dark); }
.header-cta .icon { width: 18px; height: 18px; }
.header-cta { padding: 0 34px; }
.strip-icon, .service-icon, .why-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--gold);
}
.strip-icon { width: 54px; height: 54px; border: 1px solid rgba(200,155,74,.42); border-radius: 50%; }
.strip-icon .icon { width: 24px; height: 24px; }
.service-icon { width: 50px; height: 50px; margin: 0 auto; color: var(--gold-dark); }
.service-icon .icon { width: 27px; height: 27px; }
.why-icon { width: 52px; height: 52px; color: var(--gold-dark); }
.why-icon .icon { width: 28px; height: 28px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}
.service-grid article {
  min-height: 168px;
  padding: 23px 13px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border: 1px solid rgba(10,43,61,.085);
  border-radius: 18px;
  background: rgba(255,255,255,.48);
  box-shadow: var(--soft-shadow);
}
.service-grid h2 { margin: 13px 0 0; font: 600 clamp(16px, 1.7vw, 18px)/1.25 "Playfair Display", serif; color: #283746; }

.section-heading {
  margin-bottom: 26px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}
.section-heading.compact { margin-bottom: 22px; }
.section-heading h2, .center-title h2 {
  margin: 7px 0 0;
  font-size: clamp(34px, 4vw, 48px);
  color: #153146;
  font-weight: 600;
}
.text-link { color: #0c5c70; font-weight: 700; font-size: 14px; }
.text-link span { display: inline-block; color: var(--gold-dark); margin-left: 8px; transition: transform .3s cubic-bezier(.22,1,.36,1); }
.text-link:hover span { transform: translateX(6px); }

/* ============ Hizmetlerimiz - Premium Reveal Animasyonları ============ */
.svc-heading {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.svc-heading.is-visible { opacity: 1; transform: translateY(0); }

.service-card {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px) scale(.96);
  filter: blur(6px);
  transition:
    opacity .7s cubic-bezier(.22,1,.36,1),
    transform .7s cubic-bezier(.22,1,.36,1),
    filter .7s cubic-bezier(.22,1,.36,1),
    box-shadow .35s ease,
    border-color .3s ease;
  transition-delay: calc(var(--i, 0) * 100ms);
}
.service-card.is-visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

/* Kartın alt kenarında soldan sağa açılan ince altın çizgi */
.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  z-index: 2;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
}
.service-card.is-visible::before {
  animation: svcUnderline .6s cubic-bezier(.22,1,.36,1) calc(var(--i, 0) * 100ms + .45s) forwards;
}
@keyframes svcUnderline { to { width: 100%; } }

/* Yüzeyde tek seferlik, çok hafif ışık yansıması */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  background-size: 250% 100%;
  background-position: 200% 0;
  opacity: 0;
}
.service-card.is-visible::after {
  animation: svcShine 1.1s ease calc(var(--i, 0) * 100ms + .15s) 1;
}
@keyframes svcShine {
  0% { opacity: .45; background-position: 200% 0; }
  100% { opacity: 0; background-position: -50% 0; }
}

.service-card .service-icon { transition: transform .35s cubic-bezier(.22,1,.36,1), color .3s ease; }

@media (hover: hover) and (pointer: fine) {
  .service-card.is-visible:hover {
    transform: translateY(-7px) scale(1.015);
    box-shadow: 0 18px 34px rgba(200,155,74,.18), 0 6px 16px rgba(10,43,61,.08);
    border-color: rgba(200,155,74,.4);
  }
  .service-card.is-visible:hover .service-icon { transform: rotate(9deg); color: var(--gold-dark); }
}

@media (prefers-reduced-motion: reduce) {
  .svc-heading, .svc-heading.is-visible { opacity: 1; transform: none; transition: none; }
  .service-card, .service-card.is-visible {
    opacity: 1; transform: none; filter: none; transition: none;
  }
  .service-card::before, .service-card.is-visible::before { animation: none; width: 100%; }
  .service-card::after, .service-card.is-visible::after { display: none; animation: none; }
}

@media (max-width: 720px) {
  .service-card { filter: none; transform: translateY(16px) scale(.98); }
  .service-card::after { display: none; }
}


.room-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 19px; }
.room-card {
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(10,43,61,.09);
  border-radius: 18px;
  background: #fdfcf9;
  box-shadow: var(--soft-shadow);
  transition: transform .28s ease, box-shadow .28s ease;
}
.room-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.room-media { height: 235px; overflow: hidden; position: relative; background: #e9e4d8; isolation: isolate; }
.room-media::after { content: ""; position: absolute; inset: 0; z-index: 1; box-shadow: inset 0 25px 30px rgba(15,20,20,.13); pointer-events: none; }
.room-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(10,43,61,.5), transparent 58%);
  opacity: 0;
  transition: opacity .4s ease;
}
.room-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,1,.36,1); }
.glass-badge {
  position: absolute;
  right: 13px;
  top: 13px;
  z-index: 2;
  padding: 7px 13px;
  color: white;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  background: rgba(24,24,20,.38);
  backdrop-filter: blur(10px);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.room-body { padding: 18px 18px 16px; }
.room-body h3 { margin: 0 0 12px; font: 600 clamp(19px, 2vw, 22px)/1.2 "Playfair Display", serif; color: #1b3345; }
.room-features { display: flex; flex-wrap: wrap; gap: 9px 0; color: #6b6e6a; font-size: 12px; }
.room-features span { padding: 0 10px; border-right: 1px solid rgba(10,43,61,.13); }
.room-features span:first-child { padding-left: 0; }
.room-features span:last-child { border: 0; }
.room-links { margin-top: 15px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; font-weight: 700; color: #0d6476; }
.room-links a:last-child { color: #5d6464; }

@media (hover: hover) and (pointer: fine) {
  .room-card:hover .room-media img { transform: scale(1.06); }
  .room-card:hover .room-media::before { opacity: 1; }
  .room-card:hover .glass-badge { border-color: rgba(200,155,74,.85); box-shadow: 0 0 14px rgba(200,155,74,.5); }
}

/* ============ Oda Resimleri - Premium Reveal Animasyonları (yalnızca ana sayfa #roomGrid) ============ */
.room-heading {
  opacity: 0;
  transform: translateX(-26px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.room-heading.is-visible { opacity: 1; transform: translateX(0); }

#roomGrid .room-card {
  --ry: 35px;
  --rs: 1;
  opacity: 0;
  transform: translateY(var(--ry)) scale(var(--rs));
  filter: blur(5px);
  transition:
    opacity .7s cubic-bezier(.22,1,.36,1),
    transform .7s cubic-bezier(.22,1,.36,1),
    filter .7s cubic-bezier(.22,1,.36,1),
    box-shadow .35s ease,
    border-color .3s ease;
  transition-delay: calc(var(--i, 0) * 120ms);
}
#roomGrid .room-card.is-visible { opacity: 1; --ry: 0px; filter: blur(0); }

@media (hover: hover) and (pointer: fine) {
  #roomGrid .room-card.is-visible:hover { --ry: -6px; box-shadow: var(--shadow); }
}

@media (prefers-reduced-motion: reduce) {
  .room-heading, .room-heading.is-visible { opacity: 1; transform: none; transition: none; }
  #roomGrid .room-card, #roomGrid .room-card.is-visible {
    opacity: 1; filter: none; transition: none; transform: none;
  }
  .room-media::before, .room-media img { transition: none; }
}

/* ============ Mobilde yatay kaydırılabilir oda carousel'i ============ */
@media (max-width: 720px) {
  #roomGrid .room-card { filter: none; }

  #roomGrid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  #roomGrid::-webkit-scrollbar { display: none; }
  #roomGrid .room-card {
    flex: 0 0 78%;
    scroll-snap-align: center;
    --rs: .94;
  }
  #roomGrid .room-card.is-active-slide { --rs: 1.04; }
}

.why { padding-top: 50px; }
.center-title { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 25px; margin-bottom: 35px; text-align: center; }
.center-title span { height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.center-title span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.why-grid article { padding: 12px 28px; display: flex; gap: 17px; border-right: 1px solid rgba(200,155,74,.32); }
.why-grid article:last-child { border: 0; }
.why-grid h3 { margin: 0 0 6px; color: #203b4b; font: 600 clamp(17px, 1.8vw, 19px)/1.2 "Playfair Display", serif; }
.why-grid p { margin: 0; color: #696c68; font-size: 13px; line-height: 1.55; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  min-height: 196px;
  padding: 22px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  border: 1px solid rgba(10,43,61,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.52);
  box-shadow: var(--soft-shadow);
}
.review-card img { width: 88px; height: 88px; object-fit: cover; border-radius: 50%; border: 2px solid rgba(200,155,74,.65); }
.review-card p { margin: 0 0 11px; color: #565956; font-size: 13px; }
.review-card strong { display: block; color: #183344; font-size: 13px; }
.review-card small { display: block; color: #878985; font-size: 11px; }
.quote { float: left; margin: -9px 8px 0 0; font: italic 700 46px/1 "Playfair Display", serif; color: var(--gold); }
.stars { margin-top: 8px; color: var(--gold-dark); letter-spacing: 3px; font-size: 13px; }

.gallery { padding-top: 24px; }
.gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.gallery-grid img { width: 100%; height: 150px; object-fit: cover; border-radius: 14px; box-shadow: var(--soft-shadow); transition: transform .25s ease; }
.gallery-grid img:hover { transform: translateY(-4px); }

.contact-band { padding: 10px 0 0; }
.contact-band-inner {
  min-height: 160px;
  border-radius: 24px;
  padding: 27px 34px;
  display: grid;
  grid-template-columns: 1.3fr .7fr auto;
  align-items: center;
  gap: 32px;
}
.section-kicker.light { color: #ddb768; }
.contact-band h2 { margin: 6px 0 4px; font-size: 34px; line-height: 1.12; }
.contact-band p { margin: 0; color: rgba(255,255,255,.72); }
.band-contact { display: grid; gap: 7px; }
.band-contact a { color: white; font-size: 17px; font-weight: 600; }

.footer {
  margin-top: 0;
  color: rgba(255,255,255,.78);
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.012) 0 1px, transparent 1px 4px),
    linear-gradient(120deg, #08364a, #061e2c);
  border-top: 1px solid rgba(200,155,74,.35);
}
.footer-grid { padding: 48px 0 35px; display: grid; grid-template-columns: 1.35fr 1.25fr .75fr 1fr .8fr; gap: 38px; }
.footer h2 { margin: 0 0 13px; color: #d7ae5d; font: 600 19px/1.2 "Playfair Display", serif; }
.footer a, .footer address { display: block; margin: 6px 0; font-size: 13px; color: rgba(255,255,255,.74); font-style: normal; line-height: 1.55; position: relative; width: max-content; }
.footer a:hover { color: white; }
.footer-grid a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width .25s ease;
}
.footer-grid a:hover::after { width: 100%; }
.footer-logo-badge {
  display: inline-flex;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}
.footer-brand img { width: 190px; display: block; }
.footer-brand p { max-width: 310px; font-size: 13px; margin-top: 16px; }
.footer-hours { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 12px; color: rgba(255,255,255,.6); }
.footer-hours .icon { width: 15px; height: 15px; color: var(--gold-light); }
.socials { display: flex; gap: 9px; margin-top: 15px; }
.socials a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; display: grid; place-items: center; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.socials a:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-3px); }
.socials .icon { width: 16px; height: 16px; color: rgba(255,255,255,.85); }
.footer-bottom { padding: 16px 0; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.08); font-size: 11px; }

.whatsapp, .back-top {
  position: fixed;
  right: 22px;
  z-index: 60;
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.whatsapp { bottom: 24px; min-width: 112px; height: 44px; padding: 0 16px; border-radius: 999px; background: #16b866; font-size: 12px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.whatsapp .icon { width: 17px; height: 17px; }
.back-top { bottom: 78px; width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); }
.back-top .icon { width: 18px; height: 18px; }

@media (max-width: 1180px) {
  .nav-wrap { grid-template-columns: 230px 1fr auto; }
  .desktop-nav { display: none; }
  .header-cta { justify-self: end; }
  .mobile-nav { display: block; position: relative; justify-self: end; }
  .mobile-nav summary { cursor: pointer; }
  .mobile-nav nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 80;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 230px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(10,43,61,.09);
    background: rgba(250,248,244,.98);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
  }
  .mobile-nav nav a {
    padding: 11px 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14.5px;
    color: #243746;
    transition: background .2s ease, color .2s ease;
  }
  .mobile-nav nav a:hover,
  .mobile-nav nav a.active { background: rgba(200,155,74,.14); color: var(--navy); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-right: 0; }
  .hero-photo { height: 520px; border-radius: 50px; }
  .hero-photo::before { width: 0; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); margin-top: 20px; }
  .trust-strip article:nth-child(2) { border-right: 0; }
  .service-grid { grid-template-columns: repeat(4, 1fr); }
  .room-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .why-grid article { border: 0; padding: 12px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-band-inner { grid-template-columns: 1fr 1fr; }
  .contact-band-inner > .button { justify-self: start; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .container { width: min(100% - 24px, var(--container)); }
  .section { padding: 48px 0; }
  .nav-wrap { min-height: 82px; grid-template-columns: 1fr auto auto; gap: 10px; }
  .brand img { width: 185px; }
  .header-cta { min-height: 43px; padding: 0 22px; font-size: 12px; }
  .hero { padding-top: 10px; }
  .hero-copy { padding: 34px 0; }
  .hero h1 { font-size: 50px; }
  .hero-photo { height: 400px; }
  .trust-strip { grid-template-columns: 1fr; padding: 17px; }
  .trust-strip article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); padding: 15px; }
  .trust-strip article:last-child { border: 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading { align-items: start; flex-direction: column; }
  .room-grid, .review-grid { grid-template-columns: 1fr; }
  .room-media { height: 260px; }
  .center-title { grid-template-columns: 1fr; gap: 8px; }
  .center-title span { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 135px; }
  .contact-band-inner { grid-template-columns: 1fr; padding: 27px 22px; }
  .contact-band h2 { font-size: 29px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 440px) {
  .header-cta { display: none; }
  .hero h1 { font-size: 42px; }
  .hero-actions .button { width: 100%; }
  .mini-trust { gap: 13px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-grid article { min-height: 145px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============ İç Sayfa Üst Banner (page-hero) ============ */
.page-hero { padding: 30px 0 0; }
.page-hero-inner {
  position: relative;
  overflow: hidden;
  padding: 44px 40px;
  border-radius: 26px;
  color: white;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), transparent 26%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.015) 0 1px, transparent 1px 4px),
    linear-gradient(125deg, #0d4b61, var(--navy-2));
  border: 1px solid rgba(200,155,74,.5);
  box-shadow: var(--shadow);
}
.page-banner { margin-top: 16px; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); }
.page-banner img { width: 100%; height: auto; display: block; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.62); margin: 0 0 14px; }
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span[aria-hidden] { color: rgba(255,255,255,.4); }
.page-hero h1 { margin: 0 0 10px; font-family: "Playfair Display", Georgia, serif; font-size: clamp(30px, 3.6vw, 44px); font-weight: 600; }
.page-hero p { margin: 0; max-width: 640px; color: rgba(255,255,255,.78); font-size: 15px; }

/* ============ Kurumsal: misyon / vizyon / belgeler ============ */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 8px; }
.info-card {
  padding: 30px 28px;
  border: 1px solid rgba(10,43,61,.09);
  border-radius: 20px;
  background: rgba(255,255,255,.55);
  box-shadow: var(--soft-shadow);
}
.info-card--photo { padding: 0; overflow: hidden; isolation: isolate; transition: transform .28s ease, box-shadow .28s ease; }
.info-card--photo:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.info-card-media { position: relative; overflow: hidden; height: 190px; }
.info-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s ease; }
.info-card--photo:hover .info-card-media img { transform: scale(1.045); }
.info-card-body { padding: 24px 26px 28px; }
.info-card h2 { margin: 0 0 10px; font: 600 24px/1.2 "Playfair Display", serif; color: #153146; }
.info-card p { margin: 0; color: #575a56; font-size: 14px; line-height: 1.7; }

.doc-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 8px; }
.doc-list li { list-style: none; display: flex; align-items: center; gap: 12px; padding: 16px 18px; border: 1px solid rgba(10,43,61,.09); border-radius: 14px; background: rgba(255,255,255,.5); font-size: 14px; font-weight: 600; color: #1b3345; }
.doc-list .icon { color: var(--petrol); width: 20px; height: 20px; }

/* ============ Üniversitelere Ulaşım ============ */
.uni-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; margin-top: 8px; }
.uni-jump { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 22px; }
.uni-jump a {
  padding: 6px 14px;
  border: 1px solid rgba(10,43,61,.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #35474f;
  background: rgba(255,255,255,.5);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.uni-jump a:hover { background: var(--petrol); border-color: var(--petrol); color: #fff; }

.uni-card {
  position: relative;
  padding: 22px 24px;
  border: 1px solid rgba(10,43,61,.09);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  background: rgba(255,255,255,.55);
  box-shadow: var(--soft-shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  scroll-margin-top: 100px;
}
.uni-rank {
  position: absolute;
  top: -12px;
  left: 16px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-2);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(10,43,61,.25);
}
.uni-map-embed iframe { filter: grayscale(85%) contrast(.96); transition: filter .45s ease; }
.uni-card:hover .uni-map-embed iframe,
.uni-map-embed iframe:hover { filter: grayscale(0%) contrast(1); }
.uni-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #4a3410;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 4px 10px rgba(200,155,74,.35);
}
.uni-duration.is-fastest span { color: var(--gold-dark); font-weight: 800; }
.uni-duration.is-fastest .icon { color: var(--gold-dark); }
.uni-directions {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  margin-top: 14px;
  padding-top: 12px;
  border: 0;
  border-top: 1px solid rgba(10,43,61,.08);
  background: none;
  font: inherit;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--petrol);
  cursor: pointer;
  text-align: left;
}
.uni-directions .arrow { display: inline-block; font-size: 14px; transition: transform .2s ease; }
.uni-directions:hover .arrow { transform: translateX(3px); }
.uni-directions.is-open .arrow { transform: rotate(90deg); }
.uni-directions:hover { color: var(--gold-dark); }
.uni-directions.is-open { color: var(--gold-dark); }
.uni-map-embed { margin-top: 12px; border-radius: 12px; overflow: hidden; border: 1px solid rgba(10,43,61,.1); }
.uni-map-embed iframe { width: 100%; height: 220px; border: 0; display: block; }
.uni-map-embed[hidden] { display: none; }
.uni-directions-external { display: block; padding: 8px 12px; font-size: 11.5px; font-weight: 700; color: var(--petrol); background: rgba(15,107,122,.06); text-align: center; }
.uni-directions-external:hover { color: var(--gold-dark); }
.uni-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.uni-card h3 { display: flex; align-items: center; gap: 10px; margin: 0 0 14px; font: 600 17px/1.3 "Playfair Display", serif; color: #1b3345; }
.uni-card h3 .icon { color: var(--gold-dark); width: 20px; height: 20px; flex: 0 0 auto; }
.uni-card-row { display: flex; align-items: center; gap: 9px; font-size: 13px; color: #575a56; padding: 5px 0; }
.uni-card-row .icon { width: 16px; height: 16px; color: var(--petrol); flex: 0 0 auto; }
.uni-card-row span { font-weight: 600; }

/* ============ İletişim: form + bilgi + harita ============ */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 26px; align-items: start; margin-top: 8px; }
.contact-card {
  padding: 30px;
  border: 1px solid rgba(10,43,61,.09);
  border-radius: 22px;
  background: rgba(255,255,255,.6);
  box-shadow: var(--soft-shadow);
}
.contact-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: grid; gap: 7px; }
.form-field label { font-size: 12px; font-weight: 700; letter-spacing: .03em; color: #35474f; }
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid rgba(10,43,61,.16);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  background: white;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--petrol);
  outline-offset: 1px;
  border-color: var(--petrol);
}
.form-note { font-size: 12px; color: var(--muted); margin: 0; }
.form-success {
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(15,107,122,.09);
  border: 1px solid rgba(15,107,122,.25);
  color: #0d4b57;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-success .icon { color: var(--petrol); }

.contact-info-list { display: grid; gap: 18px; }
.contact-info-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-row .why-icon { width: 44px; height: 44px; flex: 0 0 auto; }
.contact-info-row .icon { width: 22px; height: 22px; }
.contact-info-row h3 { margin: 0 0 4px; font: 600 15px "Manrope", sans-serif; color: #1b3345; }
.contact-info-row p, .contact-info-row a { margin: 0; display: block; font-size: 13px; color: #565954; }
.contact-info-row a:hover { color: var(--petrol); }

.map-frame { margin-top: 22px; border-radius: 18px; overflow: hidden; border: 1px solid rgba(10,43,61,.1); box-shadow: var(--soft-shadow); }
.map-frame iframe { width: 100%; height: 260px; border: 0; display: block; }

/* ============ Sanal Tur ============ */
.tour-note { max-width: 720px; margin: 0 0 26px; color: #565954; font-size: 15px; }
.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tour-grid figure { margin: 0; border-radius: 16px; overflow: hidden; box-shadow: var(--soft-shadow); position: relative; }
.tour-grid img { width: 100%; height: 230px; object-fit: cover; transition: transform .35s ease; }
.tour-grid figure:hover img { transform: scale(1.04); }
.tour-grid figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 12px 16px; font-size: 13px; font-weight: 700; color: white; background: linear-gradient(0deg, rgba(10,32,44,.75), transparent); }

/* ============ Responsive: iç sayfa bileşenleri ============ */
@media (max-width: 900px) {
  .info-grid, .doc-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .uni-card-grid { grid-template-columns: 1fr; }
  .tour-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .page-hero-inner { padding: 30px 22px; border-radius: 20px; }
  .tour-grid { grid-template-columns: 1fr; }
}

/* ============ Scroll Reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-visible { transition-delay: .09s; }
.reveal-delay-2.is-visible { transition-delay: .18s; }
.reveal-delay-3.is-visible { transition-delay: .27s; }
.reveal-delay-4.is-visible { transition-delay: .36s; }
.reveal-delay-5.is-visible { transition-delay: .45s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ Sayılarla Turkuaz ============ */
.stats { padding: 10px 0 8px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  text-align: center;
  padding: 32px 18px;
  border: 1px solid rgba(10,43,61,.09);
  border-radius: 20px;
  background: rgba(255,255,255,.5);
  box-shadow: var(--soft-shadow);
  transition: transform .28s ease, box-shadow .28s ease;
}
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.stat-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font: 600 42px/1 "Playfair Display", serif;
  color: var(--petrol);
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.stat-value { display: inline-block; min-width: 1ch; text-align: right; }
.stat-number .stat-prefix,
.stat-number .stat-suffix { font-size: 24px; color: var(--gold-dark); font-weight: 700; }
.stat-label { margin-top: 10px; font-size: 13px; font-weight: 700; color: #40515a; letter-spacing: .01em; }

@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stat-card { padding: 24px 14px; }
  .stat-number { font-size: 34px; }
}

/* ============ Lightbox (tıklayınca büyüyen görsel) ============ */
.is-zoomable { cursor: zoom-in; }
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(8,18,24,.93);
  backdrop-filter: blur(2px);
  cursor: zoom-out;
}
.lightbox-overlay.is-open { display: flex; }
.lightbox-overlay img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  cursor: default;
}
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,.22); }
@media (max-width: 560px) {
  .lightbox-overlay { padding: 20px; }
  .lightbox-close { top: 14px; right: 14px; width: 38px; height: 38px; }
}