:root {
  --navy: #013c73;
  --navy-dark: #0a2b52;
  --gold: #b5834f;
  --gold-dark: #9a6c3d;
  --text: #333;
  --muted: #8f8f8f;
  --footer-link: #8fb6e0;
  --header-h: 130px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 300;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.icon { width: 18px; height: 18px; flex-shrink: 0; }
.gold { color: var(--gold); }

/* ---------- Görsel / yer tutucu ---------- */
.media { width: 100%; height: 100%; object-fit: cover; }
.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #8a929c;
  background: repeating-linear-gradient(45deg, #e1e4e8 0 14px, #d8dce1 14px 28px);
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); }
.btn-navy { background: var(--navy-dark); color: #fff; }
.btn-navy:hover { background: #061c37; }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: #e9eef4; }
.btn-outline-light { border: 2px solid #fff; color: #fff; padding: 16px 64px; font-size: 16px; font-weight: 400; }
.btn-outline-light:hover { background: #fff; color: var(--navy); }
.btn-outline-dark { border: 1px solid #333; color: #333; padding: 14px 42px; font-size: 12px; letter-spacing: .06em; }
.btn-outline-dark:hover { background: #333; color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-h);
  background: rgba(255, 255, 255, .96);
  border-top: 3px solid var(--gold);
  box-shadow: 0 1px 0 rgba(181, 131, 79, .18), 0 10px 30px -18px rgba(1, 60, 115, .25);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  z-index: 100;
  transition: height .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  height: 98px;
  box-shadow: 0 1px 0 rgba(181, 131, 79, .22), 0 14px 34px -16px rgba(1, 60, 115, .32);
}
.header-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 55px;
}
.menu-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy);
}
.menu-toggle .icon { width: 22px; height: 22px; color: var(--gold); transition: transform .3s; }
.menu-toggle:hover .icon-menu { transform: scaleX(.8); }

.logo-wrap {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 280px;
  height: calc(100% + 36px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
  background: #fff;
  border-radius: 0 0 140px 140px / 0 0 36px 36px;
  box-shadow: 0 12px 18px -12px rgba(1, 60, 115, .28);
}
.logo-wrap::after {
  content: '';
  position: absolute;
  inset: auto 18% 7px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .7;
}
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  color: var(--navy);
  transition: transform .3s;
}
.site-header.scrolled .logo { transform: scale(.78); }
.logo-main { font-family: 'Marcellus', serif; font-size: 38px; letter-spacing: -.5px; }
.logo-script { font-family: 'Great Vibes', cursive; font-size: 36px; margin: -10px 0 0 22px; }
.logo-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .32em;
  padding: 4px 28px 0;
  margin-top: 2px;
  border-top: 1px solid var(--navy);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
}
.main-nav a { position: relative; display: flex; align-items: center; gap: 9px; padding: 6px 0; transition: color .25s; }
.main-nav a:not(.lang)::after {
  content: '';
  position: absolute;
  left: 30px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav .icon { width: 19px; height: 19px; color: var(--gold); }
.main-nav .lang {
  margin-left: 6px;
  padding: 6px 0 6px 28px;
  border-left: 1px solid rgba(181, 131, 79, .35);
  letter-spacing: .1em;
}
.search-toggle {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(181, 131, 79, .45);
  border-radius: 50%;
  transition: background .25s, border-color .25s;
}
.search-toggle .icon { width: 16px; height: 16px; color: var(--navy); transition: color .25s; }
.search-toggle:hover { background: var(--gold); border-color: var(--gold); }
.search-toggle:hover .icon { color: #fff; }

/* Dil seçici */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .14em;
  color: rgba(1, 60, 115, .35);
}
.lang-switch a { padding: 6px 2px; color: var(--navy); opacity: .55; transition: opacity .2s, color .2s; }
.lang-switch a:hover { opacity: 1; color: var(--gold); }
.lang-switch a.active { opacity: 1; color: var(--gold); border-bottom: 1px solid var(--gold); }

/* Yan menü */
.menu-toggle { align-self: stretch; margin-left: -55px; padding: 0 20px 0 55px; transition: background .3s; }
.menu-toggle .icon-close { display: none; width: 14px; height: 14px; }
.drawer-open .menu-toggle { background: var(--drawer-bg); }
.drawer-open .menu-toggle .icon-menu { display: none; }
.drawer-open .menu-toggle .icon-close { display: block; }

:root { --drawer-bg: #f3f4f6; }
.drawer {
  position: fixed;
  top: var(--header-h);
  bottom: 0;
  left: 0;
  z-index: 99;
  display: flex;
  background: var(--drawer-bg);
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform .35s ease, visibility .35s, top .3s;
}
.site-header.scrolled ~ .drawer { top: 98px; }
.drawer-open .drawer { transform: none; visibility: visible; }

.drawer-main {
  width: 450px;
  display: flex;
  flex-direction: column;
  padding: 26px 34px 40px 20px;
  overflow-y: auto;
}
.drawer-main li { display: block; }
.drawer-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  text-transform: uppercase;
  color: #2b2b2b;
  transition: color .2s;
}
a.drawer-link { display: block; }
.drawer-link .icon { width: 12px; height: 18px; stroke-width: 2; }
.drawer-link .icon path { stroke-width: 2.4; }
.drawer-link:hover, .drawer-link.current, .drawer-link[aria-expanded="true"] { color: var(--gold); }
.drawer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(181, 131, 79, .35);
}
.drawer-contact h4 { font-size: 13px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.drawer-contact a { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; font-weight: 400; line-height: 1.5; color: #2b2b2b; transition: color .2s; }
.drawer-contact a:hover { color: var(--gold); }
.drawer-contact .icon { width: 16px; height: 16px; margin-top: 2px; color: var(--gold); }

.drawer-sub { display: none; width: 450px; border-left: 1px solid #ccc; overflow-y: auto; }
.drawer.sub-open .drawer-sub { display: block; }
.submenu { padding: 45px 20px 40px 28px; }
.submenu ul { display: flex; flex-direction: column; gap: 10px; }
.submenu a { font-size: 12px; font-weight: 500; text-transform: uppercase; color: #2b2b2b; transition: color .2s; }
.submenu a:hover { color: var(--gold); }
.submenu-back { display: none; align-items: center; gap: 10px; margin-bottom: 20px; font-size: 16px; font-weight: 500; text-transform: uppercase; color: var(--gold); }
.submenu-back .icon { width: 12px; height: 18px; }
.submenu-back .icon path { stroke-width: 2.4; }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 98;
  opacity: 0;
  visibility: hidden;
}
.drawer-open .drawer-backdrop { opacity: 1; visibility: visible; }
.search-close .icon { width: 26px; height: 26px; }

/* Arama */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background: rgba(255, 255, 255, .97);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
.search-open .search-overlay { opacity: 1; visibility: visible; }
.search-close { position: absolute; top: 36px; right: 40px; }
.search-overlay form { display: flex; width: min(720px, 100%); border-bottom: 2px solid var(--navy); }
.search-overlay input { flex: 1; min-width: 0; border: 0; outline: 0; background: none; padding: 14px 0; font: 300 30px 'Roboto', sans-serif; color: var(--navy); }
.search-overlay form .icon { width: 26px; height: 26px; color: var(--navy); }

/* ---------- Slider ortak ---------- */
.slider { --per-view: 1; --gap: 0px; position: relative; }
.slider-viewport { overflow: hidden; height: 100%; }
.slider-track { position: relative; display: flex; gap: var(--gap); height: 100%; transition: transform .6s ease; }
.slide { flex: 0 0 calc((100% - (var(--per-view) - 1) * var(--gap)) / var(--per-view)); min-width: 0; }
.slider-dots { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.slider-dots button { width: 38px; height: 2px; background: #d5d5d5; transition: background .2s; }
.slider-dots button.active { background: #333; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); color: #bbb; z-index: 2; transition: color .2s; }
.slider-arrow:hover { color: #555; }

/* ---------- Hero ---------- */
.hero { position: relative; margin-top: var(--header-h); }
.hero-slider { height: calc(100vh - var(--header-h)); min-height: 640px; max-height: 900px; color: #fff; }
.hero-slider .slide { position: relative; height: 100%; }
.hero-media { position: absolute; inset: 0; }
.hero-media .placeholder { background: linear-gradient(160deg, #5c6b78, #34414d); color: rgba(255, 255, 255, .35); align-items: flex-end; padding-bottom: 260px; }
.hero-media::after { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, .18); }
.hero-content {
  position: absolute;
  left: 50%;
  top: 22%;
  transform: translateX(-50%);
  width: min(760px, 90%);
  text-align: center;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .35);
}
.hero-content h1, .hero-content .h1 { font-size: 32px; font-weight: 700; line-height: 1.25; margin-bottom: 14px; }
.hero-content p { font-size: 18px; font-weight: 300; }
.hero-static {
  position: absolute;
  left: 50%;
  top: calc(22% + 150px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.hero-static .slider-dots { margin-top: -10px; }
.hero-static .slider-dots button { width: 48px; background: rgba(255, 255, 255, .4); }
.hero-static .slider-dots button.active { background: #fff; }

.rating {
  width: 122px;
  background: #fff;
  color: #1b3a5c;
  text-align: center;
  border: 3px solid #1f8ee0;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
  overflow: hidden;
  text-shadow: none;
}
.rating-head { background: #1f8ee0; color: #fff; font-size: 12px; font-weight: 700; padding: 3px 0; }
.rating-score { font-size: 28px; font-weight: 500; line-height: 1.5; margin-top: 6px; }
.rating-count { font-size: 11px; font-weight: 400; padding-bottom: 8px; }

.leed {
  position: absolute;
  left: 11%;
  top: 80px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  opacity: .8;
}
.leed .placeholder { background: rgba(255, 255, 255, .25); color: #fff; }

/* Rezervasyon formu */
.booking {
  position: absolute;
  left: 50%;
  bottom: 70px;
  transform: translateX(-50%);
  width: min(1680px, calc(100% - 200px));
  display: grid;
  grid-template-columns: 2.1fr 1fr 1fr .9fr 1fr;
  gap: 30px;
  align-items: end;
  padding: 22px 94px 30px 15px;
  background: #fff;
  z-index: 5;
}
.field label, .field-label {
  display: block;
  margin-bottom: 8px;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  color: #555;
}
.field input, .guest-btn, .select-wrap select {
  width: 100%;
  height: 62px;
  border: 1px solid var(--navy);
  background: #fff;
  color: var(--navy);
  font: 400 19px 'Roboto', sans-serif;
  text-align: center;
  padding: 0 10px;
}
.select-wrap { position: relative; }
.select-wrap select {
  appearance: none;
  text-align: left;
  padding: 0 50px 0 14px;
  border-color: #ccc;
  color: #222;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .03em;
  cursor: pointer;
}
.select-wrap .icon { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; color: var(--gold); pointer-events: none; }
.guest-btn strong { font-weight: 700; }
.guest-field { position: relative; }
.guest-pop {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  width: max(100%, 240px);
  padding: 14px 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
  z-index: 10;
}
.guest-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; font-weight: 400; }
.stepper { display: flex; align-items: center; gap: 12px; }
.stepper button { width: 30px; height: 30px; border: 1px solid var(--navy); color: var(--navy); border-radius: 50%; font-size: 18px; line-height: 1; }
.stepper output { min-width: 18px; text-align: center; font-weight: 500; }
.booking-submit { height: 62px; font-size: 19px; font-weight: 400; padding: 0 20px; }

/* ---------- Bölüm başlıkları ---------- */
.section { padding: 90px 0; }
.section-title { text-align: center; font-size: 38px; font-weight: 400; text-transform: uppercase; margin-bottom: 40px; }
.section-title.plain { text-transform: none; }
.section-lead { max-width: 930px; margin: -10px auto 50px; text-align: center; font-size: 17px; color: var(--muted); }

/* ---------- Odalar ---------- */
.rooms-slider { --per-view: 3; --gap: 20px; max-width: 1120px; margin: 0 auto; }
.room-card { display: flex; flex-direction: column; background: var(--navy); color: #fff; text-align: center; }
.room-media { position: relative; aspect-ratio: 16 / 9.2; }
.tour {
  position: absolute;
  right: 0;
  top: 42%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 6px;
  font-size: 11px;
  color: #fff;
  background: rgba(0, 0, 0, .3);
}
.tour .icon { width: 26px; height: 26px; }
.room-body { flex: 1; display: flex; flex-direction: column; padding: 28px 20px 46px; }
.room-body h3 { min-height: 3.2em; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 400; line-height: 1.3; text-transform: uppercase; }
.room-body p { flex: 1; margin: 22px 0 30px; font-size: 13px; }
.room-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.room-actions .btn { width: 235px; max-width: 100%; }
.rooms-slider .slider-arrow .icon { width: 30px; height: 56px; }
.rooms-slider .prev { left: -70px; }
.rooms-slider .next { right: -70px; }
.rooms-more { text-align: center; margin-top: 90px; }

/* ---------- Özellik blokları ---------- */
.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 85px;
  align-items: start;
  padding: 60px 0;
}
.feature-media { aspect-ratio: 2 / 1; }
.feature-media .slider { height: 100%; }
.feature-label {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 9px 36px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: rgba(0, 0, 0, .45);
}
.feature-arrows { position: absolute; right: 20px; bottom: 40px; z-index: 2; display: flex; gap: 6px; }
.feature-arrows[hidden] { display: none; }
.feature-arrows button { width: 60px; height: 60px; display: grid; place-items: center; color: #fff; background: rgba(0, 0, 0, .35); transition: background .2s; }
.feature-arrows button:hover { background: rgba(0, 0, 0, .6); }
.feature-arrows .icon { width: 30px; height: 30px; }
.feature-text { max-width: 460px; }
.feature-text h2 { font-size: 38px; font-weight: 400; line-height: 1.2; color: #222; }
.feature-subtitle { margin: 12px 0 20px; font-size: 19px; font-weight: 400; color: var(--gold); }
.feature-text p:not(.feature-subtitle) { font-size: 14px; margin-bottom: 38px; }
.feature-text .btn { padding: 12px 48px; }

.feature.reverse .feature-media { order: 2; }
.feature.reverse .feature-text { justify-self: end; margin-top: 30px; }
.feature.reverse .feature-label { right: auto; left: 18px; }
.feature.reverse .feature-arrows { right: auto; left: 28px; }

/* ---------- Galeri ---------- */
.gallery { padding-top: 60px; }
.gallery-slider { --per-view: 3; --gap: 10px; }
.gallery-slider .slide { aspect-ratio: 16 / 9.2; }
.gallery-slider .slider-arrow { width: 44px; height: 44px; display: grid; place-items: center; color: #fff; background: rgba(0, 0, 0, .3); top: calc(50% - 40px); }
.gallery-slider .slider-arrow .icon { width: 22px; height: 22px; }
.gallery-slider .prev { left: 20px; }
.gallery-slider .next { right: 20px; }

/* ---------- Paylaş bandı ---------- */
.share { background: var(--navy); color: #fff; padding: 40px 0; }
.share-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.share h3 { font-size: 27px; font-weight: 300; line-height: 1.3; }
.share h3 strong { display: block; color: var(--gold); font-weight: 500; }
.share-right { display: flex; align-items: center; gap: 24px; }
.hashtag { font-size: 38px; font-weight: 400; color: var(--gold); }
.social { display: flex; gap: 10px; }
.social a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: rgba(255, 255, 255, .14); transition: background .2s; }
.social a:hover { background: var(--gold); }
.social .icon { width: 22px; height: 22px; }

/* ---------- Konum ---------- */
.location { padding: 120px 0 100px; background: #f7f8fa; }
.location .section-lead { font-size: 16px; }
.location-card { display: grid; grid-template-columns: 1fr 1.9fr; background: #fff; box-shadow: 0 6px 30px rgba(0, 0, 0, .08); }
.location-info { padding: 55px 35px; font-size: 13px; color: var(--muted); }
.location-info h3 { margin-bottom: 45px; font-size: 20px; font-weight: 500; color: #222; text-transform: uppercase; }
.location-info .email { display: inline-block; margin-bottom: 26px; font-size: 15px; color: var(--gold); }
.location-info p { margin-bottom: 22px; }
.location-info p a { text-decoration: underline; }
.hours { font-size: 15px; font-weight: 500; color: var(--navy); }
.location-map { width: 100%; height: 100%; min-height: 420px; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 80px 0 30px;
  background: var(--navy);
  border-top: 3px solid var(--gold);
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr 1.2fr 1.3fr;
  gap: 50px;
  padding-bottom: 56px;
}
.footer-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
  line-height: 1;
  color: #fff;
}
.footer-logo .logo-main { font-size: 34px; }
.footer-logo .logo-script { font-size: 32px; }
.footer-logo .logo-sub { border-top-color: rgba(255, 255, 255, .6); }
.footer-about p { max-width: 320px; margin-bottom: 24px; font-size: 14px; line-height: 1.8; color: var(--footer-link); }
.footer-about .social a { width: 38px; height: 38px; }
.footer-about .social .icon { width: 18px; height: 18px; }

.footer-col h4 {
  position: relative;
  margin-bottom: 26px;
  padding-bottom: 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px; background: var(--gold); }
.footer-menu { display: flex; flex-direction: column; gap: 12px; font-size: 14px; color: var(--footer-link); }
.footer-menu a, .footer-contact a, .footer-bottom a { transition: color .2s; }
.footer-menu a:hover, .footer-contact a:hover, .footer-bottom a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; font-size: 14px; line-height: 1.6; color: var(--footer-link); }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact .icon { width: 16px; height: 16px; margin-top: 3px; color: var(--gold); }
.footer-hours { padding-left: 28px; font-weight: 500; color: #fff; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  font-size: 13px;
  color: var(--footer-link);
}
.footer-bottom .credit { color: #fff; }
.credit strong { font-weight: 800; letter-spacing: -.02em; }

.newsletter > label { display: block; margin-bottom: 14px; font-size: 13px; font-weight: 400; line-height: 1.6; color: #cfdced; }
.newsletter-row { display: flex; }
.newsletter-row input { flex: 1; min-width: 0; height: 44px; padding: 0 14px; border: 0; font: 300 15px 'Roboto', sans-serif; }
.newsletter-row button { padding: 0 26px; background: var(--gold); color: #fff; font-size: 11px; font-weight: 500; text-transform: uppercase; }
.consent { display: flex; gap: 8px; margin-top: 16px; font-size: 12px; line-height: 1.6; color: #c8d6e8; cursor: pointer; }
.consent input { flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; accent-color: var(--gold); }
.consent a { color: var(--gold); }

/* ---------- Oda sayfası ---------- */
.room-page { background: #f7f8fa; }
.page-hero {
  position: relative;
  margin-top: var(--header-h);
  min-height: 505px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 150px 20px 22px;
  color: #fff;
}
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media .placeholder { background: linear-gradient(160deg, #6b5d52, #3a3531); color: rgba(255, 255, 255, .3); align-items: flex-start; padding-top: 30px; }
.page-hero-media::after { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, .4); }
.page-hero-inner { position: relative; width: min(1110px, 100%); display: flex; flex-direction: column; align-items: center; }
.page-hero h1 {
  margin-bottom: 42px;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
}

.booking.booking-inline {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  width: 100%;
  margin: 0;
  grid-template-columns: 1.9fr 1fr 1fr .65fr 1fr;
  gap: 22px;
  padding: 18px 40px 24px 30px;
  box-shadow: none;
}
.booking-inline .field label, .booking-inline .field-label { font-size: 11px; margin-bottom: 6px; }
.booking-inline .field input, .booking-inline .guest-btn { height: 45px; font-size: 15px; padding: 0 6px; }
.booking-inline .guest-btn { font-size: 13px; }
.booking-inline .booking-submit { height: 47px; font-size: 15px; }
.hotel-fixed {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--gold);
  text-transform: uppercase;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 12px;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb [aria-current] { color: #fff; font-weight: 500; }

.room-tabs-wrap { padding-top: 55px; padding-bottom: 50px; }
.room-tabs { --per-view: 3; --gap: 30px; padding: 0 40px; }
.room-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  color: #222;
  transition: color .2s;
}
.room-tab:hover, .room-tab.active { color: var(--gold); }
.room-tab.active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(220px, 70%);
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
}
.tab-arrow { position: absolute; top: 50%; width: 20px; height: 24px; margin-top: -12px; }
.tab-arrow::before { content: ''; position: absolute; top: 5px; border: 7px solid transparent; }
.tab-arrow.prev { left: 0; }
.tab-arrow.next { right: 0; }
.tab-arrow.prev::before { right: 6px; border-right: 9px solid var(--gold); border-left: 0; }
.tab-arrow.next::before { left: 6px; border-left: 9px solid var(--gold); border-right: 0; }

.room-detail { max-width: 1255px; }
.room-gallery { aspect-ratio: 1215 / 570; }
.room-gallery .slider { height: 100%; }
.room-gallery .tour { top: auto; right: auto; left: 50%; bottom: 14px; transform: translateX(-50%); padding: 6px 10px; }
.room-gallery .feature-arrows { bottom: 20px; }

.room-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 40px 0 70px;
  border-bottom: 1px solid #e3e5e8;
}
.room-desc p { margin-bottom: 20px; font-size: 14px; line-height: 1.75; color: #444; }
.room-desc strong { font-weight: 500; color: #222; }
.room-services-title { margin: 34px 0 16px; font-size: 18px; font-weight: 500; color: #222; }
.room-specs { display: grid; grid-template-columns: 130px 1fr; gap: 10px 0; margin-bottom: 26px; font-size: 13px; color: #444; }
.room-specs dt { text-transform: uppercase; }
.room-book { width: 100%; padding: 14px; margin-bottom: 26px; font-weight: 400; }
.room-contact { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font-size: 13px; color: #444; }
.room-contact .icon { width: 15px; height: 15px; color: var(--gold); }
.room-contact a { text-decoration: underline; word-break: break-all; }
.room-contact a:hover { color: var(--gold); }

.amenities { padding: 70px 0 60px; }
.amenities .container { max-width: 1255px; }
.amenities h2 { margin-bottom: 36px; font-size: 26px; font-weight: 400; text-align: center; text-transform: uppercase; color: #333; }
.amenities ul { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px 30px; }
.amenities li { position: relative; padding-left: 20px; font-size: 13px; color: #444; }
.amenities li::before { content: ''; position: absolute; left: 0; top: .6em; width: 5px; height: 5px; background: var(--gold); }

.room-extra-gallery { padding: 10px 0 60px; }
.room-extra-gallery h2 { margin-bottom: 30px; font-size: 20px; font-weight: 400; text-align: center; color: #333; }
.room-extra-gallery .slider-dots { margin-top: 30px; }

/* ---------- Toplantı & Etkinlik ---------- */
.page-hero-short { min-height: 310px; align-items: stretch; padding: 0 20px 14px; }
.page-hero-short .page-hero-inner { justify-content: space-between; padding-top: 130px; }
.page-hero-short h1 { margin: 0; }

.meeting-intro { max-width: 850px; padding-top: 55px; padding-bottom: 50px; border-bottom: 1px solid #e3e5e8; }
.meeting-intro h2 { margin-bottom: 14px; font-size: 20px; font-weight: 400; text-transform: uppercase; color: #333; }
.meeting-intro h3 { margin: 50px 0 20px; font-size: 18px; font-weight: 500; color: #222; }
.meeting-intro p { margin-bottom: 14px; font-size: 13px; line-height: 1.75; color: #555; }
.meeting-intro .meeting-lead { font-weight: 700; color: #222; }
.meeting-intro strong { font-weight: 700; color: #222; }
.gold-link { font-weight: 700; color: var(--gold); }
.meeting-contact { display: flex; flex-wrap: wrap; gap: 6px 28px; margin: 30px 0 22px; }
.meeting-contact .room-contact { margin: 0; }
.meeting-cta { padding: 12px 40px; font-size: 12px; text-transform: none; letter-spacing: 0; color: #111; }

.meeting-equipment { padding: 50px 0 40px; }
.plain-title { text-transform: none !important; font-size: 26px !important; }
.meeting-slider { padding-bottom: 60px; }

.halls { padding: 60px 0 80px; background: #fff; }
.halls .container { max-width: 850px; }
.halls h2 { padding-bottom: 20px; margin-bottom: 36px; font-size: 26px; font-weight: 400; text-align: center; color: #222; border-bottom: 1px solid #e3e5e8; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.halls-table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 11px; text-align: center; }
.halls-table th, .halls-table td { padding: 9px 6px; border: 1px solid #e3e5e8; }
.halls-table thead th { background: var(--gold); color: #fff; font-weight: 700; border-color: #c9a37b; }
.halls-table tbody th { font-weight: 700; color: #222; text-transform: uppercase; white-space: nowrap; }
.halls-table tbody th > span:first-child { display: inline-block; min-width: 90px; }
.halls-table td { color: #555; }
.hall-photo { display: inline-flex; vertical-align: middle; margin-left: 6px; color: var(--gold); }
.hall-photo .icon { width: 13px; height: 13px; }
a.hall-photo:hover { color: var(--gold-dark); }
.halls-note { margin-top: 36px; font-size: 11px; text-align: center; color: #333; }

.activities { padding: 80px 20px 20px; }
/* Kutu akışta kalır (uzun metinde uzar), görsel üstte ona biner */
.activity { position: relative; max-width: 800px; margin: 0 auto 60px; padding-top: 50px; }
.activity-box { position: relative; width: 450px; min-height: 250px; padding: 25px 70px 25px 56px; background: #fff; }
.activity-box h3 { margin-bottom: 6px; font-size: 20px; font-weight: 400; color: #222; }
.activity-box p { max-width: 290px; font-size: 11px; line-height: 1.7; color: #333; }
.activity-media { position: absolute; top: 0; right: 0; width: 400px; aspect-ratio: 400 / 230; }
.activity-box .activity-note { margin-top: 12px; }
.activity-link { width: 153px; margin-top: 24px; padding: 7px 10px; font-size: 10px; font-weight: 700; letter-spacing: 0; color: #222; }
.activities-page .activities { padding-top: 90px; }
.activities-page .activity-box { padding-top: 40px; }
.activities-page .activity-box h3 { margin-bottom: 22px; }
.activity-note strong { font-weight: 700; color: #333; }
.adventure-intro { padding-top: 70px; }
.adventure-intro h2 { margin-bottom: 36px; }
.activity.reverse .activity-box { margin-left: auto; padding-left: 75px; padding-right: 30px; }
.activity.reverse .activity-box p { max-width: 340px; }
.activity.reverse .activity-media { right: auto; left: 0; }

.lead-form-section { padding: 70px 0 90px; }
.lead-form-section .container { max-width: 835px; }
.lead-form-section h2 { font-size: 22px; font-weight: 400; text-align: center; color: #222; }
.lead-form-sub { margin: 4px 0 26px; font-size: 12px; text-align: center; color: #999; }
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 30px; }
.lead-form .full { grid-column: 1 / -1; }
.lead-form input[type=text], .lead-form input[type=tel], .lead-form input[type=email], .lead-form textarea, .lead-form select {
  width: 100%;
  padding: 8px 8px;
  border: 1px solid #c9ccd1;
  background: #fff;
  font: 400 12px 'Roboto', sans-serif;
  color: #222;
}
.lead-form input, .lead-form select { height: 32px; }
.lead-form textarea { resize: vertical; min-height: 94px; }
.lead-form input::placeholder, .lead-form textarea::placeholder { color: #333; }
.lead-form .select-wrap select { height: 32px; padding: 0 30px 0 8px; font-size: 9px; font-weight: 700; letter-spacing: .03em; color: #222; border-color: #c9ccd1; }
.lead-form .select-wrap .icon { width: 13px; height: 13px; color: #222; right: 12px; }
.lead-form .check { display: flex; gap: 8px; font-size: 11px; line-height: 1.6; color: #333; cursor: pointer; }
.lead-form .check input { flex-shrink: 0; width: 13px; height: 13px; margin-top: 2px; accent-color: var(--gold); }
.lead-form .check a { font-weight: 700; color: var(--gold); }
.lead-submit { justify-self: center; width: 190px; padding: 11px; margin-top: 10px; font-size: 11px; }
.form-message { margin-bottom: 20px; padding: 12px 16px; font-size: 13px; }
.form-message.success { background: #e8f3ea; color: #25613a; }
.form-message.error { background: #fbeaea; color: #922; }

/* ---------- Restoran sayfası ---------- */
.venue-tabs { --per-view: 8; --gap: 8px; max-width: 800px; margin: 0 auto; }
.venue-tabs .room-tab { font-size: 11px; letter-spacing: .02em; white-space: nowrap; }
.venue-tabs .room-tab.active::after { width: 70%; }
.venue-info { border-bottom: 0; }
.desc-heading { margin: 40px 0 16px; font-size: 13px; font-weight: 700; color: #222; }
.desc-heading:first-child { margin-top: 0; }
.venue-side h3 { margin-bottom: 18px; font-size: 15px; font-weight: 400; color: #222; }
.venue-side hr { margin: 26px 0 22px; border: 0; border-top: 1px solid #dfe2e6; }
.venue-address { align-items: flex-start; }
.venue-address .icon { margin-top: 3px; }

.venue-video { max-width: 850px; padding-bottom: 60px; }
.video-poster { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.video-poster::after { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, .45); pointer-events: none; }
.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #111;
  transform: translate(-50%, -50%);
  transition: transform .2s;
}
a.play-btn:hover { transform: translate(-50%, -50%) scale(1.08); }
.play-btn .icon { width: 20px; height: 20px; }
.video-label {
  position: absolute;
  left: 50%;
  top: calc(50% + 50px);
  z-index: 1;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

/* ---------- Düğün sayfası ---------- */
.wedding-intro { border-bottom: 0; }
.wedding-intro h2 { font-size: 22px; }
.wedding-intro p { color: #777; }
.wedding-contact-title { margin-top: 36px; }
.wedding-slider { max-width: 850px; padding-top: 10px; }
.wedding-slider .room-gallery { aspect-ratio: 810 / 470; }

.wedding-block { padding: 50px 0; }
.block-title { font-size: 20px; font-weight: 500; text-align: center; color: #222; }
.block-title.large { font-size: 26px; font-weight: 400; }
.block-lead { max-width: 620px; margin: 6px auto 26px; font-size: 12px; text-align: center; color: #999; }

.venue-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; max-width: 795px; margin: 0 auto; }
.venue-card { background: #fff; }
.venue-card-media { aspect-ratio: 390 / 187; }
.venue-card-media .slider { height: 100%; }
.venue-card-media .feature-arrows { right: 0; bottom: 0; gap: 0; }
.venue-card-media .feature-arrows button { width: 40px; height: 40px; background: rgba(0, 0, 0, .3); }
.venue-card-media .feature-arrows .icon { width: 22px; height: 22px; }
.venue-card-body { padding: 26px 18px 30px; }
.venue-card-body h3 { margin-bottom: 18px; font-size: 13px; font-weight: 500; text-transform: uppercase; color: #222; }
.venue-capacity { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; font-size: 10px; color: #222; }
.venue-capacity .icon { width: 14px; height: 14px; color: var(--gold); }
.venue-capacity strong { font-weight: 700; }
.venue-specs { display: grid; grid-template-columns: auto 1fr; gap: 10px 8px; font-size: 10px; color: #333; }
.venue-specs.strong-labels dt { font-weight: 700; color: #222; }

.concepts { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; max-width: 810px; margin: 0 auto; }
.concept { display: grid; grid-template-columns: 190px 1fr; background: #fff; }
.concept-media { aspect-ratio: 190 / 142; }
.concept-body { padding: 14px 16px; }
.concept-body h3 { margin-bottom: 6px; font-size: 13px; font-weight: 400; line-height: 1.35; color: #222; }
.concept-body p { font-size: 9.5px; line-height: 1.6; color: #333; }

.wedding-photo { max-width: 1040px; padding-bottom: 70px; }
.wedding-photo-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; margin: 0; }
.wedding-photo-media .media { transition: transform .8s ease; }
.wedding-photo-media:hover .media { transform: scale(1.03); }
.wedding-photo-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .6), rgba(0, 0, 0, 0) 55%);
  pointer-events: none;
}
.wedding-photo-media figcaption {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 34px;
  z-index: 1;
  max-width: 560px;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.5;
  color: #fff;
}
@media (max-width: 640px) {
  .wedding-photo { padding-bottom: 40px; }
  .wedding-photo-media { aspect-ratio: 4 / 3; }
  .wedding-photo-media figcaption { left: 18px; right: 18px; bottom: 18px; font-size: 16px; }
}
.wedding-page .video-label { max-width: 240px; font-weight: 400; text-transform: none; text-align: center; line-height: 1.8; }

/* ---------- SPA sayfaları / uzun metin içerik ---------- */
.spa-tabs { --per-view: 5; max-width: 560px; }
.hero-logo img { max-height: 90px; width: auto; }

.rich-content { max-width: 870px; padding-top: 10px; padding-bottom: 50px; font-size: 12px; line-height: 1.75; color: #444; }
.rich-content h2 { margin: 50px 0 14px; font-size: 20px; font-weight: 700; text-transform: uppercase; color: #222; }
.rich-content h2:first-child { margin-top: 0; font-weight: 400; }
.rich-content h3 { margin: 44px 0 16px; font-size: 16px; font-weight: 700; color: #222; }
.rich-content p { margin-bottom: 16px; }
.rich-content strong { font-weight: 700; color: #222; }
.rich-content ul { margin-bottom: 16px; }
.rich-content li { position: relative; padding-left: 16px; margin-bottom: 6px; }
.rich-content li::before { content: ''; position: absolute; left: 0; top: .72em; width: 9px; height: 4px; background: #333; }
.rich-content .meeting-contact { margin-top: 36px; }
.rich-content .meeting-cta { margin-bottom: 50px; }

.share-row { display: flex; align-items: center; gap: 8px; margin-bottom: 26px; font-size: 12px; font-weight: 500; color: #333; }
.share-row span { margin-right: 6px; }
.share-row a { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid #ccc; border-radius: 50%; color: var(--gold); transition: background .2s, color .2s; }
.share-row a:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.share-row .icon { width: 12px; height: 12px; }

/* Yukarı çık */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 112px;
  z-index: 90;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
.to-top.visible { opacity: 1; visibility: visible; }
.to-top .icon { width: 30px; height: 30px; }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 40px;
  z-index: 400; /* menü, arama ve lightbox açıkken de görünür kalsın */
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 8px 22px -6px rgba(37, 211, 102, .6);
  transition: transform .25s, box-shadow .25s;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: wa-pulse 2.4s ease-out infinite;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 10px 26px -6px rgba(37, 211, 102, .75); }
.whatsapp-float .icon { width: 32px; height: 32px; }
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* WhatsApp sohbet balonu */
.wa-bubble {
  position: fixed;
  right: 24px;
  bottom: 112px;
  z-index: 400;
  width: 290px;
  overflow: hidden;
  border-radius: 14px;
  background: #efeae2;
  box-shadow: 0 14px 40px -10px rgba(0, 0, 0, .35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(.96);
  transform-origin: bottom right;
  transition: opacity .35s, transform .35s, visibility .35s;
}
.wa-widget.show .wa-bubble { opacity: 1; visibility: visible; transform: none; }
.wa-bubble-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 40px 12px 14px;
  background: #075e54;
  color: #fff;
  line-height: 1.3;
}
.wa-bubble-head strong { display: block; font-size: 14px; font-weight: 500; }
.wa-bubble-head small { font-size: 11px; opacity: .8; }
.wa-avatar { flex-shrink: 0; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: #25d366; }
.wa-avatar .icon { width: 20px; height: 20px; }
.wa-bubble-close { position: absolute; top: 14px; right: 12px; z-index: 1; color: #fff; opacity: .8; }
.wa-bubble-close:hover { opacity: 1; }
.wa-bubble-close .icon { width: 14px; height: 14px; }
.wa-message {
  position: relative;
  display: block;
  margin: 16px 16px 18px;
  padding: 10px 12px 22px;
  border-radius: 0 10px 10px 10px;
  background: #fff;
  font-size: 14px;
  line-height: 1.5;
  color: #111;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .12);
}
.wa-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  border-top: 10px solid #fff;
  border-left: 8px solid transparent;
}
.wa-time { position: absolute; right: 10px; bottom: 5px; font-size: 11px; color: #25a45a; font-weight: 500; }
.wa-message:hover .wa-time { text-decoration: underline; }
.to-top { transition: .3s, bottom .35s; }
.wa-widget.show ~ .to-top { opacity: 0; visibility: hidden; }
@media (max-width: 640px) {
  .wa-bubble { right: 16px; bottom: 84px; width: calc(100vw - 32px); max-width: 300px; }
}
@media (max-width: 640px) {
  .whatsapp-float { right: 16px; bottom: 20px; width: 52px; height: 52px; }
  .whatsapp-float .icon { width: 28px; height: 28px; }
  .to-top { right: 16px; bottom: 84px; width: 48px; height: 48px; }
}

/* ---------- Galeri sayfası ---------- */
.gallery-page { margin-top: var(--header-h); padding: 70px 0 100px; }
.gallery-title { text-align: center; font-size: 38px; font-weight: 400; margin-bottom: 36px; }

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 8px 44px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.gallery-tab {
  position: relative;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #2b2b2b;
  transition: color .2s;
}
.gallery-tab::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60%;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%) scaleX(0);
  transition: transform .3s ease;
}
.gallery-tab:hover, .gallery-tab.active { color: var(--gold); }
.gallery-tab.active::after { transform: translateX(-50%) scaleX(1); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.gallery-grid[hidden] { display: none; }
.gallery-card {
  position: relative;
  display: block;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  color: #fff;
  text-align: left;
  transition: box-shadow .35s, transform .35s;
}
.gallery-card .media { transition: transform .6s ease; }
.gallery-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, .55), rgba(0, 0, 0, .05) 60%);
  transition: background .35s;
}
.gallery-card:hover { box-shadow: 0 16px 34px -12px rgba(0, 0, 0, .35); }
.gallery-card:hover .media { transform: scale(1.06); }
.gallery-card:hover::before { background: linear-gradient(to top, rgba(0, 0, 0, .65), rgba(0, 0, 0, .3)); }
.gallery-card-title {
  position: absolute;
  left: 26px;
  bottom: 30px;
  z-index: 2;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .35);
}
.gallery-card-go {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.gallery-card-go .icon { width: 16px; height: 16px; }
.gallery-card:hover .gallery-card-go, .gallery-card:focus-visible .gallery-card-go { opacity: 1; transform: none; }
/* Tümü kartlarında başlık solda, buton sağda */
.gallery-card-title + .gallery-card-go { bottom: 30px; }

/* Büyütme ikonu: köşeli çerçeve */
.gallery-zoom {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%) scale(.8);
  opacity: 0;
  transition: opacity .3s, transform .3s;
  background:
    linear-gradient(#fff, #fff) left top / 12px 3px no-repeat,
    linear-gradient(#fff, #fff) left top / 3px 12px no-repeat,
    linear-gradient(#fff, #fff) right top / 12px 3px no-repeat,
    linear-gradient(#fff, #fff) right top / 3px 12px no-repeat,
    linear-gradient(#fff, #fff) left bottom / 12px 3px no-repeat,
    linear-gradient(#fff, #fff) left bottom / 3px 12px no-repeat,
    linear-gradient(#fff, #fff) right bottom / 12px 3px no-repeat,
    linear-gradient(#fff, #fff) right bottom / 3px 12px no-repeat;
}
.gallery-card:hover .gallery-zoom, .gallery-card:focus-visible .gallery-zoom { opacity: 1; transform: translate(-50%, -50%); }
.slide.zoomable { position: relative; cursor: zoom-in; }
.slide.zoomable:hover .gallery-zoom { opacity: 1; transform: translate(-50%, -50%); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 60px 20px;
  background: rgba(10, 16, 24, .92);
}
.lightbox[hidden] { display: none; }
.lightbox-figure { width: min(1100px, 100%); }
.lightbox-media { aspect-ratio: 3 / 2; max-height: calc(100vh - 160px); margin: 0 auto; }
.lightbox-media .media { object-fit: contain; }
.lightbox-caption { margin-top: 14px; text-align: center; font-size: 14px; letter-spacing: .06em; color: rgba(255, 255, 255, .8); }
.lightbox-close { position: absolute; top: 20px; right: 24px; color: #fff; }
.lightbox-close .icon { width: 26px; height: 26px; }
.lightbox-nav { flex-shrink: 0; color: #fff; opacity: .75; transition: opacity .2s; }
.lightbox-nav:hover { opacity: 1; }
.lightbox-nav .icon { width: 28px; height: 44px; }
.lightbox-nav .icon path { stroke-width: 1.6; }
body.lightbox-open { overflow: hidden; }

@media (max-width: 992px) {
  .gallery-page { padding: 50px 0 70px; }
  .gallery-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 28px;
    overflow-x: auto;
    margin: 0 -20px 36px;
    padding: 0 20px;
    scrollbar-width: none;
  }
  .gallery-tabs::-webkit-scrollbar { display: none; }
  .gallery-tab { font-size: 13px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .gallery-card-title { font-size: 22px; }
}
@media (max-width: 640px) {
  .gallery-title { font-size: 28px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-card-go { opacity: 1; transform: none; padding: 6px 10px; font-size: 11px; }
  .lightbox-nav { position: absolute; bottom: 20px; }
  .lightbox-nav.prev { left: 30%; }
  .lightbox-nav.next { right: 30%; }
}

/* ---------- Duyarlı ---------- */
@media (max-width: 1400px) {
  .booking { width: calc(100% - 80px); padding-right: 15px; }
  .main-nav { gap: 22px; font-size: 12px; }
}

@media (max-width: 1200px) {
  .main-nav a:not(.lang) span, .menu-toggle span { display: none; }
  .main-nav a:not(.lang)::after { display: none; }
  .main-nav { gap: 22px; }
  .rooms-slider .prev { left: -40px; }
  .rooms-slider .next { right: -40px; }
  .feature { gap: 50px; }
  .feature-text { padding-right: 20px; }
  .feature.reverse .feature-text { padding: 0 0 0 20px; }
}

@media (max-width: 992px) {
  :root { --header-h: 90px; }
  .site-header.scrolled { height: 80px; }
  .header-inner { padding: 0 20px; }
  .menu-toggle { margin-left: -20px; padding: 0 20px; }
  .site-header.scrolled ~ .drawer { top: 80px; }
  .logo-wrap { width: 220px; height: calc(100% + 26px); border-radius: 0 0 110px 110px / 0 0 26px 26px; }
  .logo { transform: scale(.78); }
  .site-header.scrolled .logo { transform: scale(.7); }

  .hero-slider { height: 78vh; min-height: 560px; }
  .hero-content { top: 18%; }
  .hero-content h1, .hero-content .h1 { font-size: 26px; }
  .hero-content p { font-size: 16px; }
  .hero-static { top: calc(18% + 170px); }
  .leed { display: none; }
  .booking {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: auto;
    margin: -50px 20px 0;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
  }
  .field-hotel { grid-column: 1 / -1; }

  .rooms-slider { --per-view: 2; margin: 0 30px; }
  .rooms-slider .prev { left: -34px; }
  .rooms-slider .next { right: -34px; }

  .feature, .feature.reverse { grid-template-columns: 1fr; gap: 30px; padding: 40px 0; }
  .feature.reverse .feature-media { order: 0; }
  .feature-text, .feature.reverse .feature-text { justify-self: start; max-width: none; margin: 0; padding: 0 20px; }

  .gallery-slider { --per-view: 2; }
  .location-card { grid-template-columns: 1fr; }
  .location-map { min-height: 360px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px 40px; }
}

@media (max-width: 992px) {
  .page-hero { min-height: 0; padding-top: 80px; }
  .page-hero h1 { font-size: 28px; margin-bottom: 30px; }
  .booking.booking-inline { grid-template-columns: 1fr 1fr; padding: 18px; }
  .room-tabs { --per-view: 2; }
  .venue-tabs { --per-view: 4; }
  .spa-tabs { --per-view: 3; }
  .room-info { grid-template-columns: 1fr; gap: 30px; }
  .amenities ul { grid-template-columns: repeat(2, 1fr); }

  .activity, .activity.reverse { max-width: 560px; margin-bottom: 40px; padding-top: 0; display: flex; flex-direction: column; }
  .activity-box, .activity.reverse .activity-box,
  .activity-media, .activity.reverse .activity-media { position: static; width: 100%; min-height: 0; margin: 0; }
  .activity-box, .activity.reverse .activity-box { order: 2; padding: 24px; }
  .activity-box p, .activity.reverse .activity-box p { max-width: none; font-size: 13px; }
}

@media (max-width: 960px) {
  /* Dar ekranda alt menü ana listenin üzerine açılır */
  .drawer { width: min(450px, 100vw); }
  .drawer-main { width: 100%; }
  .drawer-sub { position: absolute; inset: 0; width: 100%; border: 0; background: var(--drawer-bg); }
  .submenu { padding: 26px 20px 40px; }
  .submenu ul { gap: 14px; }
  .submenu-back { display: flex; }
}

@media (max-width: 640px) {
  .main-nav { gap: 14px; }
  .main-nav a:not(.lang):not(:first-child) { display: none; }
  .main-nav .lang { margin-left: 0; padding-left: 14px; }
  .search-toggle { width: 34px; height: 34px; }
  .logo-wrap { width: 180px; }
  .logo { transform: scale(.62); }
  .site-header.scrolled .logo { transform: scale(.58); }

  .hero-content h1, .hero-content .h1 { font-size: 22px; }
  .hero-content p { font-size: 14px; }
  .hero-static { gap: 26px; top: calc(18% + 190px); }
  .btn-outline-light { padding: 12px 40px; }
  .booking { grid-template-columns: 1fr; margin: -40px 16px 0; }
  .field input, .guest-btn, .select-wrap select, .booking-submit { height: 54px; font-size: 16px; }

  .section { padding: 60px 0; }
  .section-title { font-size: 28px; }
  .section-lead { font-size: 15px; }
  .rooms-slider { --per-view: 1; margin: 0; }
  .rooms-slider .slider-arrow { display: none; }
  .rooms-more { margin-top: 50px; }

  .feature-text h2 { font-size: 30px; }
  .feature-label { padding: 7px 20px; font-size: 12px; }
  .feature-arrows { bottom: 14px; }
  .feature-arrows button { width: 44px; height: 44px; }

  .gallery-slider { --per-view: 1; }
  .share-inner, .share-right { flex-direction: column; align-items: flex-start; }
  .hashtag { font-size: 30px; }
  .location { padding: 70px 0; }
  .location-info { padding: 35px 24px; }

  .site-footer { padding-top: 56px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .to-top { width: 46px; height: 46px; right: 16px; bottom: 24px; }

  .page-hero h1 { font-size: 22px; }
  .booking.booking-inline { grid-template-columns: 1fr; }
  .breadcrumb { font-size: 11px; }
  .room-tabs { --per-view: 1; padding: 0 30px; }
  .venue-tabs { --per-view: 2; }
  .room-tabs-wrap { padding-top: 35px; padding-bottom: 30px; }
  .room-gallery { aspect-ratio: 4 / 3; }
  .room-specs { grid-template-columns: 110px 1fr; }
  .amenities h2 { font-size: 20px; }
  .amenities ul { grid-template-columns: 1fr; }
  .venue-cards, .concepts { grid-template-columns: 1fr; }
  .concept { grid-template-columns: 130px 1fr; }
  .concept-body p { font-size: 11px; }
  .page-hero-short { min-height: 240px; }
  .page-hero-short .page-hero-inner { padding-top: 80px; }
  .lead-form { grid-template-columns: 1fr; }
}
