/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #14284a;
  --navy-deep: #0e1c37;
  --ink: #1c2b46;
  --body: #33415c;
  --ivory: #f6f2ea;
  --cream: #efe9dd;
  --gold: #b8a487;
  --gold-dark: #a08a68;
  --line: #d9d2c4;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
}

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

body {
  font-family: var(--sans);
  color: var(--body);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; color: var(--navy); line-height: 1.15; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ============ BUTTONS / LINKS ============ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 18px 34px;
  border: 1px solid var(--gold);
  transition: background .3s, color .3s;
  cursor: pointer;
  background: transparent;
}
.btn-reserve { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-reserve:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

/* header reserve button: always outlined + rounded */
.site-header .btn-reserve {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 4px;
}
.site-header .btn-reserve:hover { background: rgba(255, 255, 255, .12); }
.site-header.scrolled .btn-reserve {
  color: var(--navy);
  border-color: #c9c2b3;
}
.site-header.scrolled .btn-reserve:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn-outline { color: var(--ink); }
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-outline.light { color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline.light:hover { background: #fff; color: var(--navy); }

.link-underline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  color: var(--ink);
}

.section-title {
  text-align: center;
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 50px;
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  color: #fff;
  transition: background .35s, color .35s, box-shadow .35s;
}
/* transparan header için üstte hafif karartma (yazı/logo okunurluğu) */
.site-header:not(.scrolled)::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 280px;
  background: linear-gradient(180deg, rgba(0,0,0,.32) 0%, rgba(0,0,0,.14) 50%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: -1;
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  padding: 10px 40px;
  gap: 20px;
}
.header-left, .header-right { padding-top: 4px; }
.header-left { display: flex; align-items: center; gap: 26px; }
.header-right { display: flex; align-items: center; justify-content: flex-end; gap: 26px; }

.menu-toggle {
  background: none; border: none; cursor: pointer;
  width: 42px; height: 26px; position: relative; padding: 0;
}
.menu-toggle span {
  position: absolute; left: 0; width: 100%; height: 2.5px;
  background: currentColor; transition: .3s;
}
.menu-toggle span:nth-child(1) { top: 4px; }
.menu-toggle span:nth-child(2) { bottom: 4px; }

.lang-select button {
  background: none; border: none; color: inherit; cursor: pointer;
  font-family: var(--sans); font-size: 17px; letter-spacing: 2px;
  display: flex; align-items: center; gap: 8px;
}
.lang-select button svg { width: 12px; height: 8px; }

/* transparent header: force white menu + lang */
.site-header:not(.scrolled) .menu-toggle span { background: #fff; }
.site-header:not(.scrolled) .lang-select button { color: #fff; }

.header-link {
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
}

.site-header .btn-reserve { font-weight: 500; }
.site-header .lang-select button { font-weight: 500; }

.header-logo {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 6px;
}
.logo-img {
  height: 208px; width: auto; display: block;
  transition: height .35s, filter .35s;
}
.logo-img-dark { filter: brightness(0); height: 150px; }
.logo-compact {
  display: none;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(13px, 2.4vw, 21px);
  letter-spacing: 3px;
  color: var(--navy);
  white-space: nowrap;
}
.header-logo .crest { line-height: 0; }
.wordmark-main {
  font-family: var(--serif); font-size: 17px; line-height: 1.25;
  display: block;
}
.wordmark-sub {
  font-family: var(--sans); font-size: 10px; letter-spacing: 5px;
  display: block; margin-top: 4px;
  border-top: 1px solid currentColor; padding-top: 5px;
}
.wordmark-compact {
  display: none;
  font-family: var(--sans); font-size: 15px; letter-spacing: 3px;
  text-transform: uppercase;
}

/* scrolled state */
.site-header.scrolled {
  background: #fff; color: var(--navy);
  box-shadow: 0 1px 12px rgba(0,0,0,.08);
}
.site-header.scrolled .header-inner { align-items: center; padding-top: 10px; padding-bottom: 10px; }
.site-header.scrolled .header-left, .site-header.scrolled .header-right { padding-top: 0; }
.site-header.scrolled .logo-img { display: none; }
.site-header.scrolled .logo-compact { display: block; }

/* ============ FULLSCREEN NAV ============ */
.nav-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: #fff; color: var(--navy);
  transform: translateY(-100%);
  transition: transform .5s cubic-bezier(.6,0,.2,1);
  overflow-y: auto;
}
.nav-overlay.open { transform: translateY(0); }

.nav-overlay-header {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 22px 40px; gap: 20px;
}
.nav-close {
  background: none; border: none; font-size: 34px; line-height: 1;
  cursor: pointer; color: inherit; justify-self: start;
}
.nav-overlay-header .lang-select { justify-self: start; }
.nav-overlay-header .header-logo.static { grid-column: 2; }
.nav-overlay-actions { display: flex; align-items: center; justify-content: flex-end; gap: 24px; }

.nav-overlay-body {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding: 40px 60px 60px;
  max-width: 1300px; margin: 0 auto;
}
.nav-primary { list-style: none; }
.nav-primary li a {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 38px);
  display: block; padding: 10px 0;
  transition: color .25s;
}
.nav-primary li a:hover { color: var(--gold-dark); }

.nav-secondary { display: flex; flex-direction: column; gap: 16px; padding-top: 12px; }
.nav-secondary a { font-size: 15px; }
.nav-secondary-title { font-weight: 500; color: var(--navy); }

.nav-contact h4 {
  font-family: var(--sans); font-size: 12px; letter-spacing: 2px;
  color: var(--gold-dark); margin: 20px 0 6px;
}
.nav-contact h4:first-child { margin-top: 0; }
.nav-contact p { font-size: 14px; }

.nav-overlay-footer {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  border-top: 1px solid var(--line);
  padding: 24px 60px 40px;
  max-width: 1300px; margin: 0 auto;
}
.nav-back { font-size: 15px; }
.nav-legal a { font-size: 13px; color: #9aa3b2; margin-right: 22px; }

.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 38px; height: 38px; border: 1px solid var(--gold);
  border-radius: 50%; display: grid; place-items: center;
  font-size: 13px; color: var(--gold-dark); transition: .25s;
}
.social-icons a:hover { background: var(--gold); color: #fff; }

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  background: linear-gradient(180deg, #8fc0dd, #1c4f66);
}
.hero-media-1 {
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255,255,255,.28), transparent 55%),
    linear-gradient(180deg, #8fc0dd 0%, #5fa2c2 32%, #2f7893 55%, #1c4f66 74%, #10303f 100%);
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.12) 45%, rgba(0,0,0,.3)); }

.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 20px; }
.hero-content h1 {
  color: #fff;
  font-size: clamp(38px, 7vw, 88px);
  font-weight: 400;
  text-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.hero-call {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, .28);
}
.scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: #fff; animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ============ INTRO ============ */
.intro { padding: 110px 0; background: #fff; }
.intro-grid {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 80px;
  align-items: start;
}
.intro-text h2 { font-size: clamp(30px, 3.6vw, 46px); margin-bottom: 30px; }
.intro-text p { max-width: 34em; margin-bottom: 40px; color: var(--body); }

.intro-aside {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 18px; padding-left: 60px; border-left: 1px solid var(--line);
}
.intro-logo { height: 160px; width: auto; filter: brightness(0); }
.intro-contact { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 18px; }
.intro-contact li { font-size: 14px; display: flex; gap: 12px; align-items: baseline; justify-content: center; }
.intro-contact .ic { color: var(--gold-dark); }

/* ============ OFFERS ============ */
.offers { padding: 90px 0 80px; background: var(--ivory); }

.carousel { position: relative; }
.carousel-track {
  display: flex; gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding: 4px 40px 20px;
  scrollbar-width: none;
  cursor: grab;
}
.carousel-track:focus-visible { outline: none; }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
  user-select: none;
}
.carousel-track.dragging a,
.carousel-track.dragging img { pointer-events: none; }

.offer-card { flex: 0 0 340px; scroll-snap-align: start; display: block; color: inherit; }
a.offer-card { text-decoration: none; }
a.offer-card:hover .offer-img::after { background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.4)); }
a.offer-card:hover .link-underline { color: var(--gold-dark); }
.offer-img {
  height: 420px; position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 30px; margin-bottom: 22px;
  background-color: #16273f;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.offer-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.32), rgba(0,0,0,.52)); }
.offer-img h3 { position: relative; z-index: 2; color: #fff; font-size: 28px; line-height: 1.25; }
.offer-card p { font-size: 14px; margin-bottom: 18px; min-height: 66px; }

/* CTA card (6th) */
.offer-cta { flex: 0 0 340px; scroll-snap-align: start; display: flex; }
.offer-cta-inner {
  border: 1px solid var(--line);
  min-height: 420px;
  padding: 44px 36px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 30px;
}
.offer-cta-inner p { font-size: 15px; color: var(--body); }

.carousel-controls { display: flex; gap: 14px; margin-top: 20px; }

.offers .carousel-track { padding-left: 48px; }

.carousel-progress {
  position: relative; height: 2px; margin: 40px 48px 0;
  background: var(--line); overflow: hidden;
}
.carousel-progress-bar {
  position: absolute; top: 0; left: 0; height: 100%;
  width: 25%; background: var(--gold);
  transition: left .15s ease, width .15s ease;
}
.carousel-btn {
  width: 46px; height: 46px; border: 1px solid var(--line);
  background: transparent; cursor: pointer; font-size: 16px;
  color: var(--navy); transition: .25s;
}
.carousel-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.carousel-btn.floating {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px; border-radius: 50%; background: #fff;
  border: none; color: var(--navy);
  box-shadow: 0 4px 20px rgba(0,0,0,.14); font-size: 24px; z-index: 5;
  display: grid; place-items: center;
}
.carousel-btn.floating.left { left: 16px; }
.carousel-btn.floating.right { right: 16px; }
.carousel-btn.floating:hover { background: var(--navy); color: #fff; }

/* ============ ROOMS ============ */
.rooms {
  position: relative; min-height: 92vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: #fff; overflow: hidden;
  padding: 120px 20px 90px;
}
.rooms-media {
  position: absolute; inset: 0; transition: opacity .5s;
  background-color: #16273f;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.room-oda   { background-image: url('../img/oda.avif'); }
.room-otel  { background-image: url('../img/otelsuitler.avif'); }
.room-saray { background-image: url('../img/saraysuitler.avif'); }
.rooms-overlay { position: absolute; inset: 0; background: rgba(10,20,40,.42); }
.rooms-content { position: relative; z-index: 3; max-width: 560px; }
.rooms-content h2 { color: #fff; font-size: clamp(34px, 5vw, 58px); margin-bottom: 22px; }
.rooms-content p { margin-bottom: 34px; }

.rooms-tabs {
  position: relative; z-index: 3; margin-top: 60px;
  display: flex; gap: 46px;
}
.rooms-tabs button {
  background: none; border: none; color: #fff; cursor: pointer;
  font-family: var(--sans); font-size: 15px; letter-spacing: 1px;
  padding-bottom: 8px; opacity: .75; transition: .25s;
  border-bottom: 1px solid transparent;
}
.rooms-tabs button.active { opacity: 1; border-color: #fff; }

/* ============ DINING ============ */
.dining { padding: 110px 0; }
.dining-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.dining-img { height: 560px; position: relative; overflow: hidden; }
.dining-img::after, .spa-img::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(0, 0, 0, .18);
  z-index: 2; pointer-events: none;
}
.dining-img-layer {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.dining-img-base { background-image: url('../img/restrontlarvebarlar.avif'); background-color: #16273f; }
.dining-img-hover { opacity: 0; transition: opacity .45s ease; }
.dining-text h2 { font-size: clamp(30px, 3.6vw, 46px); margin-bottom: 26px; }
.dining-text > p { margin-bottom: 30px; max-width: 32em; }
.dining-list { list-style: none; margin-bottom: 40px; }
.dining-list li {
  font-family: var(--serif); font-size: 28px; color: var(--navy);
  padding: 14px 0; border-bottom: 1px solid var(--line);
  cursor: pointer; transition: color .25s, padding-left .25s;
}
.dining-list li:first-child { border-top: 1px solid var(--line); }
.dining-list li:hover { color: var(--gold-dark); padding-left: 10px; }
.dining-list li a { color: inherit; text-decoration: none; display: block; }

/* ============ SPA ============ */
.spa { padding: 110px 0; background: var(--cream); }
.spa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.spa-text { padding-right: 40px; }
.spa-text h2 { font-size: clamp(30px, 3.6vw, 46px); margin-bottom: 24px; }
.spa-text p { margin-bottom: 34px; max-width: 30em; }
.spa-img {
  height: 560px; position: relative;
  background: #16273f url('../img/luksspa.avif') center/cover no-repeat;
}

/* ============ MEETINGS ============ */
.meetings { padding: 110px 0; }
.meetings-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 40px;
}
.meetings-head h2 { font-size: clamp(30px, 3.6vw, 46px); margin-bottom: 20px; }
.meetings-head p { color: var(--body); }

.meetings-carousel { min-width: 0; }
.meetings-carousel .carousel-track { padding: 4px 0 20px; }
.meetings-carousel .carousel-progress { margin: 34px 40px 0 0; }
.meeting-card {
  flex: 0 0 clamp(260px, 33vw, 440px);
  aspect-ratio: 3 / 4;
  scroll-snap-align: start;
  position: relative; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 40px;
  background-color: #16273f;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  color: #fff;
}
.meeting-card::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(0,0,0,.32); transition: background .4s ease;
}
.meeting-card:hover::after { background: rgba(0,0,0,.55); }
.meeting-inner {
  position: relative; z-index: 2; max-width: 400px;
  display: flex; flex-direction: column; align-items: center;
}
.meeting-inner h3 { color: #fff; font-size: clamp(28px, 2.8vw, 42px); }

.meeting-details {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  max-height: 0; opacity: 0; overflow: hidden; margin-top: 0;
  transition: max-height .55s ease, opacity .4s ease, margin-top .4s ease;
}
.meeting-card:hover .meeting-details,
.meeting-card:focus-within .meeting-details {
  max-height: 460px; opacity: 1; margin-top: 22px;
}
.meeting-details p { font-size: 15px; line-height: 1.7; }
.meeting-divider { width: 90px; height: 1px; background: rgba(255,255,255,.6); }
.meeting-contact { list-style: none; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.meeting-contact li { display: flex; gap: 10px; align-items: center; justify-content: center; }
.meeting-contact .ic { opacity: .8; }
.meeting-details .btn { margin-top: 6px; }

@media (hover: none) {
  .meeting-details { max-height: 460px; opacity: 1; margin-top: 20px; }
  .meeting-card::after { background: rgba(0,0,0,.5); }
}

/* ============ INSTAGRAM ============ */
.instagram { padding: 90px 0 100px; }
.ig-carousel .carousel-track { padding: 4px 40px 20px; gap: 22px; }
.ig-tile {
  flex: 0 0 clamp(240px, 24vw, 340px);
  aspect-ratio: 1 / 1;
  scroll-snap-align: start;
  position: relative;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  background-color: #16273f;
}
.ig-mark { position: absolute; top: 14px; right: 14px; color: #fff; z-index: 2; line-height: 0; }

/* ============ FOOTER ============ */
.site-footer { background: var(--navy-deep); color: #d7dbe2; padding: 80px 0 40px; }
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 50px;
  padding-bottom: 60px;
}
.footer-col { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.footer-col a { font-size: 15px; }
.footer-col a:hover { color: #fff; }

.footer-signup p { font-size: 15px; margin-bottom: 26px; max-width: 24em; }
.signup-form { display: flex; border-bottom: 1px solid rgba(255,255,255,.4); margin-bottom: 30px; }
.signup-form input {
  flex: 1; background: none; border: none; color: #fff;
  font-family: var(--serif); font-size: 22px; padding: 8px 0;
}
.signup-form input::placeholder { color: rgba(255,255,255,.55); }
.signup-form input:focus { outline: none; }
.signup-form button { background: none; border: none; color: #fff; font-size: 20px; cursor: pointer; }
.signup-msg { font-size: 13px; margin-top: 6px; color: #cfd4dd; }
.signup-msg.ok { color: #7fd8a6; }
.signup-msg.err { color: #e59a9a; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 30px;
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 34px;
}
.footer-legal a { font-size: 13px; color: #9aa3b2; margin-right: 24px; }
.footer-badges { display: flex; align-items: center; gap: 26px; }
.badge { font-size: 11px; letter-spacing: 1px; color: #c7ccd6; text-align: center; line-height: 1.4; }
.badge small { font-size: 9px; }

.footer-copy { padding-top: 30px; font-size: 13px; color: #9aa3b2; }

.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 150;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  animation: wa-pulse 2.4s ease-out infinite;
  transition: transform .25s ease;
}
.wa-float svg { width: 30px; height: 30px; display: block; }
.wa-float:hover { transform: scale(1.1) rotate(-6deg); }

@keyframes wa-pulse {
  0%   { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.55); }
  70%  { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float { animation: none; }
}

/* ============ GRADIENT PLACEHOLDERS (swap for real images) ============ */
.grad-a { background: linear-gradient(160deg, #1f6f8b, #123c4d); }
.grad-b { background: linear-gradient(160deg, #6a5b7b, #2b2540); }
.grad-c { background: linear-gradient(160deg, #9fb0c4, #4a5b74); }
.grad-d { background: linear-gradient(160deg, #b98a5e, #6f4c30); }
.grad-e { background: linear-gradient(160deg, #2f7893, #1c4f66); }

.grad-room   { background: linear-gradient(160deg, #38507a 0%, #223a5e 50%, #16273f 100%); }
.grad-room-a { background: linear-gradient(160deg, #5f6f8c, #2c3a55); }
.grad-room-c { background: linear-gradient(160deg, #8a6f4e, #3f3423); }

.grad-dining { background: linear-gradient(160deg, #7fa8c9, #b98a5e 70%, #6f4c30); }
.grad-spa    { background: linear-gradient(160deg, #e9e3d8, #cdd6dc 50%, #b7c3cb); }

.grad-meet-1 { background: linear-gradient(160deg, #c9a24b, #7a5f27); }
.grad-meet-2 { background: linear-gradient(160deg, #1f3b66, #0c1a30); }
.grad-meet-3 { background: linear-gradient(160deg, #7b2f3a, #3a1620); }

.grad-ig-1 { background: linear-gradient(160deg, #7fb5d4, #2f7893); }
.grad-ig-2 { background: linear-gradient(160deg, #8fc0dd, #3f6f57); }
.grad-ig-3 { background: linear-gradient(160deg, #d8d2c8, #8a7f70); }
.grad-ig-4 { background: linear-gradient(160deg, #2fb6c9, #1f6f8b); }
.grad-ig-5 { background: linear-gradient(160deg, #c9a24b, #7a5f27); }
.grad-ig-6 { background: linear-gradient(160deg, #6a5b7b, #2b2540); }

/* ============ RESPONSIVE ============ */
/* overflow guards */
.intro-grid > *, .dining-grid > *, .spa-grid > *, .meetings-grid > *,
.footer-grid > *, .nav-overlay-body > *, .header-inner > * { min-width: 0; }
.carousel, .carousel-track { max-width: 100%; }
.intro-contact li, .nav-contact p, .footer-col a, .signup-form input,
.hero-content h1, .dining-list li { overflow-wrap: anywhere; }

@media (max-width: 1024px) {
  .header-right .header-link { display: none; }
  .nav-overlay-body { grid-template-columns: 1fr 1fr; }
  .intro-grid, .dining-grid, .spa-grid, .meetings-grid { grid-template-columns: 1fr; gap: 50px; }
  .intro-aside { padding-left: 0; border-left: none; border-top: 1px solid var(--line); padding-top: 40px; }
  .spa-text { padding-right: 0; }
  .dining-img, .spa-img { height: 380px; }
}

@media (max-width: 720px) {
  .container { padding: 0 22px; }

  /* header */
  .site-header .header-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px; padding: 12px 16px;
  }
  .header-left { gap: 0; flex: 0 0 auto; }
  .menu-toggle { width: 32px; height: 20px; }
  .header-left .lang-select { display: none; }
  .header-logo { flex: 1 1 auto; overflow: hidden; }
  .logo-img { height: 124px; }
  .logo-img-dark { height: 96px; }
  .logo-compact { letter-spacing: 1px; white-space: normal; line-height: 1.25; }
  .header-right { flex: 0 0 auto; gap: 0; }
  .header-right .btn-reserve {
    padding: 10px 12px; font-size: 8.5px; letter-spacing: .6px;
    line-height: 1.35; text-align: center; max-width: 104px;
  }

  /* fullscreen nav */
  .nav-overlay-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px;
  }
  .nav-overlay-header .header-logo.static,
  .nav-overlay-actions { display: none; }
  .nav-overlay-body { grid-template-columns: 1fr; padding: 24px 22px 40px; gap: 30px; }
  .nav-primary li a { font-size: 26px; }
  .nav-overlay-footer { padding: 24px 22px 40px; }

  /* hero */
  .hero { min-height: 560px; }
  .hero-content h1 { font-size: clamp(30px, 8vw, 46px); line-height: 1.28; }

  /* carousels */
  .carousel-track { padding-left: 22px; padding-right: 22px; }
  .offers .carousel-track { padding-left: 20px; }
  .carousel-progress { margin-left: 20px; margin-right: 22px; }
  .offer-card, .offer-cta { flex-basis: 80vw; }
  .offer-img { height: 340px; }
  .offer-cta-inner { min-height: 340px; padding: 36px 26px; }
  .meetings-layout { grid-template-columns: 1fr; gap: 28px; padding-left: 0; }
  .meetings-head { padding: 0 22px; }
  .meetings-carousel .carousel-track { padding-left: 20px; padding-right: 20px; }
  .meetings-carousel .carousel-progress { margin: 30px 22px 0 20px; }
  .meeting-card { flex-basis: 84vw; padding: 34px 26px; }
  .meeting-inner { gap: 18px; }
  .meeting-inner p { font-size: 14px; }
  .ig-carousel .carousel-track { padding-left: 8vw; padding-right: 8vw; gap: 14px; scroll-snap-type: x mandatory; }
  .ig-tile { flex-basis: 84vw; }
  .carousel-btn.floating { width: 40px; height: 40px; font-size: 20px; background: rgba(255,255,255,.9); }
  .carousel-btn.floating.left { left: 6px; }
  .carousel-btn.floating.right { right: 6px; }

  /* sections */
  .intro, .offers, .dining, .spa, .meetings, .instagram { padding-top: 70px; padding-bottom: 70px; }
  .rooms { min-height: auto; padding: 100px 20px 70px; }
  .rooms-tabs { gap: 20px 22px; flex-wrap: wrap; justify-content: center; margin-top: 44px; }
  .dining-list li { font-size: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============ SUBPAGE — GENEL GÖRÜNÜM ============ */
.page-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: #16273f;
  padding: 150px 20px 120px;
  overflow: hidden;
}
.page-hero-img { position: absolute; inset: 0; }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.12) 45%, rgba(0,0,0,.4));
}
.page-hero-content { position: relative; z-index: 2; color: #fff; max-width: 720px; }
.page-hero-content h1 {
  color: #fff; font-size: clamp(40px, 6.5vw, 84px);
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.page-hero-sub {
  margin-top: 22px; font-size: clamp(15px, 1.6vw, 19px); line-height: 1.75;
  color: rgba(255,255,255,.92); text-shadow: 0 1px 12px rgba(0,0,0,.35);
}
.page-hero .scroll-cue { color: #fff; }

.ov-intro { padding: 90px 0; }
.ov-intro p {
  max-width: 760px; margin: 0 auto; text-align: center;
  font-size: 18px; line-height: 1.9; color: var(--ink);
}

.ov-facts { padding: 30px 0 90px; }
.ov-facts-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.ov-fact { background: #fff; padding: 30px 26px; display: flex; flex-direction: column; gap: 8px; }
.ov-fact-label {
  font-family: var(--sans); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold-dark);
}
.ov-fact-value { font-family: var(--serif); font-size: 19px; color: var(--navy); }

.ov-amenities { padding: 80px 0; background: var(--ivory); }
.ov-amenities-list {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px 40px; max-width: 1000px; margin: 0 auto;
}
.ov-amenities-list li { display: flex; gap: 12px; font-size: 15px; }
.ov-tick { color: var(--gold-dark); }

.ov-location { padding: 90px 0; }
.ov-location-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: start; }
.ov-location h2 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 20px; }
.ov-address { margin-bottom: 24px; color: var(--body); }
.ov-distances { list-style: none; margin-bottom: 30px; }
.ov-distances li {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15px;
}
.ov-distances li span:last-child { color: var(--gold-dark); white-space: nowrap; }
.ov-contact-card { background: var(--cream); padding: 34px 30px; }
.ov-contact-card h3 { font-family: var(--serif); font-size: 20px; color: var(--navy); margin-bottom: 12px; }
.ov-contact-card h3 + p { margin-top: 0; }
.ov-contact-card h3:nth-of-type(2) { margin-top: 24px; }
.ov-contact-card p { font-size: 14px; margin-bottom: 6px; }
.ov-contact-card .ic { color: var(--gold-dark); margin-right: 8px; }

.ov-cta { padding: 90px 0 110px; text-align: center; }
.ov-cta h2 { font-size: clamp(26px, 3.4vw, 40px); margin-bottom: 26px; }
.btn-reserve.solid { background: var(--gold); color: #fff; border-color: var(--gold); border-radius: 0; }
.btn-reserve.solid:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

@media (max-width: 900px) {
  .ov-facts-grid { grid-template-columns: repeat(2, 1fr); }
  .ov-amenities-list { grid-template-columns: repeat(2, 1fr); }
  .ov-location-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .ov-facts-grid { grid-template-columns: 1fr; }
  .ov-amenities-list { grid-template-columns: 1fr; }
  .ov-intro p { font-size: 16px; }
  .ov-intro, .ov-amenities, .ov-location { padding: 60px 0; }
}

/* ============ EXPLORER (alt gezinme + sol liste + sağ detay) ============ */
.explorer { padding-bottom: 100px; }

.explorer-nav {
  position: sticky; top: 62px; z-index: 90;
  background: #fff; border-bottom: 1px solid var(--line);
}
.explorer-nav ul {
  list-style: none; display: flex; justify-content: center; flex-wrap: wrap;
}
.explorer-nav button {
  background: none; border: none; cursor: pointer; position: relative;
  font-family: var(--serif); font-size: clamp(17px, 1.9vw, 29px);
  color: var(--navy); padding: 20px 22px; transition: color .25s;
}
.explorer-nav button:hover { color: var(--gold-dark); }
.explorer-nav button.active { color: var(--gold-dark); }
.explorer-nav button.active::after {
  content: ""; position: absolute; left: 22px; right: 22px; bottom: -1px; height: 2px;
  background: var(--gold-dark);
}

.explorer-panel { display: none; padding-top: 64px; }
.explorer-panel.active {
  display: grid; grid-template-columns: 290px 1fr; gap: 56px; align-items: start;
}
.explorer-empty { padding: 60px 0; color: var(--body); }

.explorer-list { position: sticky; top: 150px; }
.explorer-list ul { list-style: none; }
.explorer-list li button {
  background: none; border: none; cursor: pointer; text-align: left; width: 100%;
  font-family: var(--serif); font-size: 21px; line-height: 1.3; color: var(--navy);
  padding: 13px 0; transition: color .2s, padding-left .2s;
}
.explorer-list li button:hover { padding-left: 6px; }
.explorer-list li button.active { color: var(--gold-dark); }

.explorer-pager { display: flex; gap: 10px; margin-top: 26px; }
.explorer-pager button {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line);
  background: none; cursor: pointer; color: var(--navy); font-size: 13px;
  font-family: var(--sans); transition: .2s;
}
.explorer-pager button.active { border-color: var(--gold-dark); color: var(--gold-dark); }

.explorer-detail { min-width: 0; }
.explorer-item { display: none; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.explorer-item.active { display: grid; }
.explorer-item-img {
  aspect-ratio: 1 / 1;
  background: #16273f center/cover no-repeat;
  background-image: linear-gradient(160deg, #7fa8c9, #2f7893);
}
.explorer-item-text h3 { font-size: clamp(26px, 3vw, 40px); margin-bottom: 20px; }
.explorer-item-text p { color: var(--body); line-height: 1.8; margin-bottom: 28px; }

/* Oda detay: teknik bilgi + manzara etiketi */
.room-meta {
  font-family: var(--sans); font-size: 14px; letter-spacing: .04em;
  color: var(--navy); margin-bottom: 18px !important;
}
.room-meta-sep { margin: 0 14px; color: var(--line); }
.room-view {
  position: relative; padding-left: 16px;
  font-family: var(--sans); font-size: 14px; letter-spacing: .04em;
  color: var(--body); margin-bottom: 26px !important;
}
.room-view::before {
  content: ""; position: absolute; left: 0; top: 2px; bottom: 2px;
  width: 2px; background: var(--gold-dark);
}

@media (max-width: 900px) {
  .explorer-nav { top: 56px; }
  .explorer-nav ul { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
  .explorer-nav ul::-webkit-scrollbar { display: none; }
  .explorer-nav button { white-space: nowrap; padding: 15px 14px; font-size: 19px; }

  .explorer-panel.active { grid-template-columns: 1fr; gap: 0; padding-top: 36px; }
  .explorer-list { display: none; }
  .explorer-item { display: grid !important; grid-template-columns: 1fr; gap: 20px; margin-bottom: 56px; }
  .explorer-item-img { aspect-ratio: 4 / 3; }
}

/* ============ TEKLİF DETAY SAYFASI ============ */
.offer-page { padding: 90px 0 110px; }
.offer-page-inner { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.offer-page-inner h2 { font-size: clamp(28px, 3.4vw, 44px); margin-bottom: 26px; }
.offer-page-inner > p { color: var(--body); line-height: 1.85; margin-bottom: 18px; }
.offer-bullets { list-style: none; margin: 20px 0 30px; }
.offer-bullets li { display: flex; gap: 12px; margin-bottom: 14px; line-height: 1.7; }
.offer-validity { font-weight: 500; color: var(--navy); margin: 24px 0 30px !important; }
.offer-terms { font-size: 13px; color: #7c8699; line-height: 1.7; margin-bottom: 40px !important; }
.offer-page-inner .btn-reserve.solid { display: inline-block; }

.offer-terms-title { font-family: var(--serif); font-size: 20px; color: var(--navy); margin: 30px 0 14px; }
.offer-terms-list { list-style: none; margin-bottom: 40px; }
.offer-terms-list li { position: relative; padding-left: 18px; font-size: 14px; color: #7c8699; line-height: 1.7; margin-bottom: 8px; }
.offer-terms-list li::before { content: "–"; position: absolute; left: 0; }

.offer-sec-title { font-family: var(--serif); font-size: clamp(20px, 2.4vw, 27px); color: var(--navy); margin: 40px 0 16px; }
.offer-links { list-style: none; margin: 10px 0 30px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }

/* ============ SSS / AKORDİYON ============ */
.faq-group { font-family: var(--serif); font-size: clamp(21px, 2.6vw, 30px); color: var(--navy); margin: 46px 0 10px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 40px 20px 0; position: relative;
  font-size: 17px; color: var(--navy); font-family: var(--serif);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 22px; color: var(--gold-dark); transition: transform .25s;
}
.faq-item[open] summary::after { content: "–"; }
.faq-answer { padding: 0 40px 22px 0; }
.faq-answer p { color: var(--body); line-height: 1.85; font-size: 15px; }

/* ============ ODA DETAY SAYFASI ============ */
.room-hero .page-hero-content { max-width: 960px; }
.room-hero-stats {
  list-style: none; margin-top: 34px;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 20px 46px;
}
.room-hero-stats li {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  max-width: 220px;
  font-family: var(--sans); font-size: 14px; line-height: 1.4;
  color: rgba(255,255,255,.94); text-shadow: 0 1px 10px rgba(0,0,0,.4);
}
.room-hero-stats .rh-ic { color: #fff; opacity: .9; }
.room-hero-stats .rh-ic svg { display: block; }

.room-desc { padding: 90px 0 80px; }
.room-desc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.room-desc-title h2 { font-size: clamp(28px, 3.4vw, 44px); color: var(--navy); line-height: 1.2; }
.room-desc-body p { color: var(--body); line-height: 1.85; margin-bottom: 18px; }
.room-desc-body .room-note { font-size: 13.5px; color: #7c8699; }
.room-desc-body .btn-outline { margin-top: 16px; }

.room-amen { padding: 20px 0 100px; }
.room-amen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.room-amen-img { aspect-ratio: 4 / 3; background: #16273f center/cover no-repeat; }
.room-amen-body h2 { font-size: clamp(26px, 3vw, 40px); color: var(--navy); margin-bottom: 20px; }
.room-amen-lead { color: var(--body); line-height: 1.8; margin-bottom: 26px; }
.room-amen-list { list-style: none; border-top: 1px solid var(--line); }
.room-amen-list li {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 4px; border-bottom: 1px solid var(--line);
  font-family: var(--sans); font-size: 15px; color: var(--navy);
}
.room-amen-list .ra-ic { color: var(--gold-dark); flex: none; }
.room-amen-list .ra-ic svg { display: block; }

.room-gallery { padding: 0 0 90px; }
.room-gallery .carousel-track { gap: 0; padding: 0; }
.room-gallery-slide { flex: 0 0 100%; scroll-snap-align: start; }
.room-gallery-slide img { width: 100%; height: clamp(320px, 60vh, 640px); object-fit: cover; display: block; }
.room-gallery .carousel-progress { margin: 24px 40px 0; }

.room-back { border-top: 1px solid var(--line); padding: 48px 0; text-align: center; }
.room-back a { font-family: var(--serif); font-size: clamp(20px, 2.4vw, 30px); color: var(--navy); }
.room-back a:hover { color: var(--gold-dark); }

@media (max-width: 900px) {
  .room-hero-stats { gap: 18px 26px; }
  .room-hero-stats li { max-width: 44%; }
  .room-desc-grid, .room-amen-grid { grid-template-columns: 1fr; gap: 26px; }
  .room-desc { padding: 60px 0 50px; }
  .room-amen { padding: 10px 0 70px; }
  .room-gallery-slide img { height: 46vh; }
}

/* ============ RESTORAN & BAR DETAY (mekan bilgi satırları) ============ */
.venue-specs {
  list-style: none; border-top: 1px solid var(--line);
  margin: 10px 0 30px;
}
.venue-specs li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  padding: 15px 2px; border-bottom: 1px solid var(--line);
  font-family: var(--sans); font-size: 14px;
}
.venue-specs .k { color: var(--navy); letter-spacing: .02em; }
.venue-specs .v { color: var(--body); text-align: right; }

.spa-contact-title { font-family: var(--serif); font-size: 19px; color: var(--navy); margin: 24px 0 4px; }
.room-amen-list a { color: var(--navy); }
.room-amen-list a:hover { color: var(--gold-dark); }
.room-amen-body .btn-reserve.solid { display: inline-block; margin-top: 30px; }

/* ============ YASAL / METİN SAYFASI ============ */
.legal-page { padding: 88px 0 110px; }
.legal-inner { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.legal-inner h2 { font-size: clamp(26px, 3vw, 40px); color: var(--navy); margin-bottom: 18px; }
.legal-updated { font-size: 13px; letter-spacing: .04em; color: #7c8699; margin-bottom: 34px; }
.legal-inner h3 {
  font-family: var(--serif); font-size: clamp(18px, 2vw, 23px); color: var(--navy);
  margin: 40px 0 14px;
}
.legal-inner p { color: var(--body); line-height: 1.85; margin-bottom: 16px; }
.legal-list { list-style: none; margin: 6px 0 20px; }
.legal-list li {
  position: relative; padding-left: 20px; margin-bottom: 12px;
  color: var(--body); line-height: 1.8;
}
.legal-list li::before { content: "–"; position: absolute; left: 0; color: var(--gold-dark); }

/* ============ İLETİŞİM POPUP ============ */
.contact-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
.contact-modal.open { opacity: 1; visibility: visible; }
.contact-modal-overlay {
  position: absolute; inset: 0; background: rgba(10, 20, 40, .55);
}
.contact-modal-card {
  position: relative; z-index: 2;
  background: #fff; max-width: 560px; width: 100%;
  padding: 64px 44px 54px; text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
  transform: translateY(12px); transition: transform .3s ease;
}
.contact-modal.open .contact-modal-card { transform: translateY(0); }
.contact-modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; cursor: pointer;
  font-size: 30px; line-height: 1; color: var(--navy);
}
.contact-modal-close:hover { color: var(--gold-dark); }
.contact-modal-card h2 {
  font-size: clamp(26px, 3.4vw, 40px); color: var(--navy);
  line-height: 1.2; letter-spacing: .01em;
}
.contact-modal-rule {
  display: block; width: 90px; height: 1px; background: var(--line);
  margin: 26px auto 30px;
}
.contact-modal-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.contact-modal-list li {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--sans); font-size: 15px; color: var(--navy);
}
.contact-modal-list .cm-ic { color: var(--gold-dark); flex: none; display: inline-flex; }
.contact-modal-list a { color: var(--navy); }
.contact-modal-list a:hover { color: var(--gold-dark); }
.contact-modal-help {
  display: inline-block; margin-top: 34px;
  font-family: var(--serif); font-size: 19px; color: var(--navy);
}
.contact-modal-help:hover { color: var(--gold-dark); }

@media (max-width: 600px) {
  .contact-modal-card { padding: 56px 24px 44px; }
  .contact-modal-list li { flex-wrap: wrap; }
}

/* ============ HAKKIMIZDA — ZAMAN ÇİZELGESİ ============ */
.about-timeline { padding: 30px 0 90px; }
.about-timeline-inner {
  max-width: 820px; margin: 0 auto; padding: 0 24px;
  border-left: 1px solid var(--line);
}
.about-tl-item { position: relative; padding: 0 0 46px 34px; }
.about-tl-item::before {
  content: ""; position: absolute; left: -5px; top: 8px;
  width: 9px; height: 9px; border-radius: 50%; background: var(--gold-dark);
}
.about-tl-item:last-child { padding-bottom: 0; }
.about-tl-item h3 {
  font-family: var(--serif); font-size: clamp(20px, 2.2vw, 26px);
  color: var(--navy); margin-bottom: 12px;
}
.about-tl-item p { color: var(--body); line-height: 1.85; margin-bottom: 14px; }

/* ============ BASIN ODASI ============ */
.press-contact-grid { align-items: start; padding-bottom: 20px; }
.press-contact-grid .room-amen-body h3:first-child { margin-top: 0; }
.press-contact-grid .room-amen-body p { color: var(--body); line-height: 1.8; margin-bottom: 18px; }

.press-news { padding: 40px 0 100px; }
.press-news-filter {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 20px; color: var(--navy);
  border-bottom: 1px solid var(--line); padding: 6px 4px; margin-bottom: 40px;
  cursor: pointer;
}
.press-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.press-card {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 1 / 1; background: #16273f;
}
.press-card-img {
  position: absolute; inset: 0;
  background: #16273f center/cover no-repeat;
  background-image: linear-gradient(160deg, #7fa8c9, #2f7893);
  transition: transform .5s ease;
}
.press-card:hover .press-card-img { transform: scale(1.05); }
.press-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.55));
}
.press-card-text {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 28px; color: #fff;
}
.press-card-date { font-family: var(--sans); font-size: 15px; margin-bottom: 14px; }
.press-card-text h3 { font-size: clamp(18px, 1.7vw, 23px); line-height: 1.3; color: #fff; }

@media (max-width: 900px) {
  .press-contact-grid { grid-template-columns: 1fr; gap: 8px; }
  .press-grid { grid-template-columns: 1fr; gap: 16px; }
  .press-card { aspect-ratio: 4 / 3; }
}

/* ============ TOPLANTILAR & ETKİNLİKLER DETAY ============ */
.mtg-page { padding: 96px 0 110px; }
.mtg-inner { max-width: 880px; margin: 0 auto; padding: 0 24px; text-align: center; }
.mtg-inner > p { color: var(--body); line-height: 1.9; margin-bottom: 26px; }
.mtg-contact { display: flex; flex-direction: column; gap: 8px; align-items: center; margin: 34px 0 36px; }
.mtg-contact a { color: var(--navy); font-family: var(--sans); font-size: 15px; }
.mtg-contact a:hover { color: var(--gold-dark); }
.mtg-inner .btn-reserve.solid { display: inline-block; }
