/* ==========================================================================
   Mevsim Otel Akyaka — ana stil
   ========================================================================== */

:root {
  --paper: #fbf8f3;
  --sand: #f3ece1;
  --sand-2: #e9dfcf;
  --ink: #17262e;
  --ink-2: #33444c;
  --muted: #66747a;
  --sea: #0e4a5a;
  --sea-2: #16707f;
  --sea-3: #d9ebec;
  --terra: #b95b33;
  --terra-2: #9c4824;
  --line: rgba(23, 38, 46, .12);
  --white: #fff;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px -20px rgba(14, 40, 50, .35);
  --shadow-sm: 0 6px 20px -8px rgba(14, 40, 50, .25);
  --wrap: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --header-h: 76px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
  font-variation-settings: "SOFT" 50, "opsz" 100;
}
h1 { font-size: clamp(2.6rem, 6.4vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
p { margin: 0 0 1.1em; }
em { font-style: italic; }
:focus-visible { outline: 2px solid var(--terra); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 10vw, 140px); }
.section--sand { background: var(--sand); }
.section--sea { background: var(--sea); color: #d6e6e8; }
.section--sea h2, .section--sea h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .7em;
  font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.section--sea .eyebrow { color: #f0b491; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.22rem); color: var(--ink-2); max-width: 60ch; }
.section--sea .lead { color: #c8dcdf; }
.section-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 24px 48px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head h2 { margin: 0; max-width: 16ch; }
.section-head .lead { margin: 0; max-width: 46ch; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .lead { margin-inline: auto; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  min-height: 50px; padding: 0 26px;
  border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  cursor: pointer; white-space: nowrap;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--terra); color: #fff; }
.btn--primary:hover { background: var(--terra-2); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--sea); }
.btn--ghost { border-color: currentColor; }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--sand); }
.btn--glass { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.5); backdrop-filter: blur(6px); }
.btn--glass:hover { background: #fff; color: var(--ink); }
.link-arrow { display: inline-flex; align-items: center; gap: .5em; font-weight: 700; color: var(--sea); }
.link-arrow svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* Header ----------------------------------------------------------------- */
.topbar {
  background: var(--ink); color: #b9c7cb; font-size: .82rem;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 38px; }
.topbar a:hover { color: #fff; }
.topbar__items { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__items span, .topbar__items a { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 14px; height: 14px; opacity: .8; }
.topbar__badge { color: #f0b491; font-weight: 600; }

.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 243, .92);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.header .wrap { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }
.page-home .header { position: fixed; left: 0; right: 0; top: 38px; background: transparent; border-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; color: #fff; }
.page-home .header.is-solid { top: 0; background: rgba(251, 248, 243, .94); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); border-color: var(--line); color: var(--ink); box-shadow: var(--shadow-sm); }

.logo { display: inline-flex; flex-direction: column; line-height: 1; color: inherit; }
.logo__name { font-family: var(--serif); font-size: 1.85rem; letter-spacing: -.01em; font-variation-settings: "SOFT" 100, "opsz" 144; }
.logo__name i { font-style: italic; color: var(--terra); }
.page-home .header:not(.is-solid) .logo__name i { color: #f3c2a4; }
.logo__sub { font-size: .66rem; font-weight: 700; letter-spacing: .34em; text-transform: uppercase; opacity: .75; margin-top: 5px; padding-left: 2px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a:not(.btn) {
  position: relative; padding: 10px 14px; font-weight: 600; font-size: .95rem; border-radius: 999px;
  transition: background .2s var(--ease);
}
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 1.5px; background: currentColor;
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav a:not(.btn):hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav .btn { margin-left: 12px; min-height: 44px; padding: 0 22px; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid currentColor; border-radius: 50%;
  background: transparent; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 18px; height: 1.5px; background: currentColor; position: relative; transition: transform .3s var(--ease), background .3s;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; z-index: 2; }
  .nav {
    position: fixed; inset: 0; z-index: 1;
    flex-direction: column; align-items: stretch; justify-content: center; gap: 4px;
    padding: 90px 28px 40px; background: var(--paper); color: var(--ink);
    opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
  }
  .nav a:not(.btn) { font-family: var(--serif); font-size: 2rem; font-weight: 400; padding: 8px 0; text-align: center; }
  .nav a:not(.btn)::after { display: none; }
  .nav .btn { margin: 24px auto 0; }
  .nav-open .nav { opacity: 1; visibility: visible; }
  .nav-open .header { color: var(--ink) !important; }
  .nav-open { overflow: hidden; }
  .topbar__items .hide-sm { display: none; }
}
@media (max-width: 560px) { .topbar__badge { display: none; } }

/* Hero ------------------------------------------------------------------- */
.hero {
  position: relative; min-height: min(100svh, 1000px); display: grid; align-items: end;
  color: #fff; overflow: hidden; background: #0d2a33;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.6s var(--ease);
}
.hero__slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.hero__slide.is-active { opacity: 1; }
.hero__slide.is-active img { animation: kenburns 9s linear forwards; }
@keyframes kenburns { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 25, 31, .55) 0%, rgba(8, 25, 31, 0) 28%),
    linear-gradient(0deg, rgba(8, 25, 31, .82) 0%, rgba(8, 25, 31, .25) 45%, rgba(8, 25, 31, 0) 70%);
}
.hero__content { position: relative; z-index: 2; padding-top: 180px; padding-bottom: clamp(150px, 20vh, 200px); }
.hero h1 { color: #fff; max-width: 13ch; margin-bottom: .3em; text-wrap: balance; }
.hero h1 em { color: #f3c2a4; }
.hero__lead { font-size: clamp(1.05rem, 1.5vw, 1.3rem); max-width: 44ch; color: rgba(255,255,255,.88); margin-bottom: 30px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__dots { position: absolute; z-index: 3; right: var(--gutter); bottom: clamp(160px, 22vh, 210px); display: flex; flex-direction: column; gap: 10px; }
.hero__dots button { width: 10px; height: 10px; border-radius: 50%; border: 1px solid #fff; background: transparent; padding: 0; cursor: pointer; transition: background .3s, transform .3s; }
.hero__dots button[aria-current="true"] { background: #fff; transform: scale(1.25); }
.hero__caption { position: absolute; z-index: 3; right: var(--gutter); bottom: 112px; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }

/* Booking bar -------------------------------------------------------------- */
.booking {
  position: relative; z-index: 5; margin-top: -92px;
}
.booking__form {
  display: grid; grid-template-columns: repeat(3, 1fr) auto; align-items: stretch;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}
.booking__field { display: flex; flex-direction: column; justify-content: center; gap: 2px; padding: 18px 26px; border-right: 1px solid var(--line); min-width: 0; }
.booking__field label { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.booking__field input, .booking__field select {
  border: 0; background: transparent; padding: 4px 0; font-size: 1.08rem; font-weight: 600; color: var(--ink); width: 100%; min-width: 0;
  appearance: none; -webkit-appearance: none; cursor: pointer;
}
.booking__field input:focus, .booking__field select:focus { outline: none; }
.booking__field:focus-within { background: var(--sand); }
.booking__submit { border-radius: 0; min-height: 88px; padding: 0 38px; font-size: 1rem; }
.booking__note { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin-top: 16px; font-size: .88rem; color: var(--muted); }
.booking__note span { display: inline-flex; align-items: center; gap: 7px; }
.booking__note svg { width: 16px; height: 16px; color: var(--sea-2); }
@media (max-width: 860px) {
  .booking { margin-top: -60px; }
  .booking__form { grid-template-columns: 1fr 1fr; }
  .booking__field:nth-child(2) { border-right: 0; }
  .booking__field:nth-child(3) { grid-column: 1 / -1; border-right: 0; border-top: 1px solid var(--line); }
  .booking__submit { grid-column: 1 / -1; min-height: 60px; }
  .booking__field { padding: 14px 18px; }
}

/* Intro ------------------------------------------------------------------ */
.intro { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.intro__media { position: relative; padding-bottom: 18%; padding-right: 12%; }
.intro__media .img-a { border-radius: var(--radius); aspect-ratio: 4 / 5; object-fit: cover; width: 100%; box-shadow: var(--shadow); }
.intro__media .img-b {
  position: absolute; right: 0; bottom: 0; width: 52%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--radius); border: 8px solid var(--paper); box-shadow: var(--shadow);
}
.intro__stamp {
  position: absolute; left: -18px; top: 28px; width: 124px; height: 124px; border-radius: 50%;
  background: var(--terra); color: #fff; display: grid; place-content: center; text-align: center; line-height: 1.05;
  box-shadow: var(--shadow-sm); transform: rotate(-8deg);
}
.intro__stamp b { font-family: var(--serif); font-size: 2.3rem; font-weight: 400; display: block; }
.intro__stamp small { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 34px 0 36px; padding: 26px 0; border-block: 1px solid var(--line); }
.stats b { display: block; font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--sea); line-height: 1.1; }
.stats span { font-size: .86rem; color: var(--muted); }
@media (max-width: 860px) {
  .intro { grid-template-columns: 1fr; }
  .intro__stamp { left: 10px; width: 104px; height: 104px; }
}

/* Rooms ------------------------------------------------------------------ */
.rooms { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 36px); }
.room-card { position: relative; display: flex; flex-direction: column; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.room-card__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--sand-2); }
.room-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.room-card:hover .room-card__media img { transform: scale(1.05); }
.room-card__tag { position: absolute; left: 18px; top: 18px; background: rgba(255,255,255,.92); color: var(--ink); font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 7px 13px; border-radius: 999px; }
.room-card__body { padding: 28px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.room-card__body h3 { margin-bottom: .35em; }
.room-card__body p { color: var(--muted); font-size: .98rem; }
.specs { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 4px 0 22px; padding: 0; list-style: none; font-size: .9rem; color: var(--ink-2); font-weight: 600; }
.specs li { display: inline-flex; align-items: center; gap: 8px; }
.specs svg { width: 18px; height: 18px; color: var(--sea-2); }
.room-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 20px; border-top: 1px solid var(--line); }
.room-card__foot small { display: block; font-size: .78rem; color: var(--muted); }
.room-card__foot strong { font-family: var(--serif); font-weight: 400; font-size: 1.3rem; color: var(--ink); }
.stretched::after { content: ""; position: absolute; inset: 0; }
@media (max-width: 760px) { .rooms { grid-template-columns: 1fr; } }

/* Amenities -------------------------------------------------------------- */
.amenities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.amenity { background: var(--paper); padding: 30px 26px; display: flex; flex-direction: column; gap: 14px; }
.section--sand .amenity { background: var(--sand); }
.amenity svg { width: 32px; height: 32px; color: var(--terra); stroke-width: 1.4; }
.amenity h4 { font-family: var(--sans); font-weight: 700; font-size: 1rem; margin: 0; color: var(--ink); letter-spacing: 0; }
.amenity p { margin: 0; font-size: .9rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 900px) { .amenities { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .amenity { padding: 22px 18px; } }

/* Full-bleed band --------------------------------------------------------- */
.band { position: relative; min-height: min(78vh, 720px); display: grid; place-items: center; color: #fff; text-align: center; overflow: hidden; }
.band img { position: absolute; inset: -10% 0; width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(8,25,31,.35), rgba(8,25,31,.65)); }
.band__inner { position: relative; z-index: 2; padding: 80px var(--gutter); max-width: 900px; }
.band blockquote { margin: 0 0 18px; font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3.2rem); line-height: 1.2; color: #fff; font-variation-settings: "SOFT" 100, "opsz" 144; text-wrap: balance; }
.band cite { font-style: normal; font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; opacity: .8; }

/* Experiences ------------------------------------------------------------ */
.exp-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 250px; gap: 16px; }
.exp { position: relative; border-radius: var(--radius); overflow: hidden; color: #fff; background: var(--sea); isolation: isolate; }
.exp img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); z-index: -2; }
.exp::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,25,31,.8), rgba(8,25,31,0) 60%); z-index: -1; }
.exp:hover img { transform: scale(1.06); }
.exp__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 24px; }
.exp__body small { font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #f3c2a4; }
.exp__body h3 { color: #fff; margin: 4px 0 0; font-size: clamp(1.3rem, 2vw, 1.65rem); }
.exp__body p { margin: 6px 0 0; font-size: .9rem; color: rgba(255,255,255,.82); line-height: 1.45; max-width: 36ch; }
.exp:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.exp:nth-child(2) { grid-column: span 5; }
.exp:nth-child(3) { grid-column: span 5; }
.exp:nth-child(4), .exp:nth-child(5), .exp:nth-child(6), .exp:nth-child(7) { grid-column: span 3; }
.exp:nth-child(8) { grid-column: span 12; }
@media (max-width: 900px) {
  .exp-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .exp:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .exp:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .exp__body p { display: none; }
}
@media (max-width: 520px) { .exp-grid { grid-auto-rows: 190px; gap: 10px; } .exp__body { padding: 16px; } }

/* Video ------------------------------------------------------------------ */
.videos { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(20px, 3vw, 32px); align-items: start; }
.video-card { position: relative; display: block; width: 100%; padding: 0; border: 0; background: none; text-align: left; cursor: pointer; color: inherit; }
.video-card__media { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; background: #0b2229; }
.video-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), opacity .4s; opacity: .88; }
.video-card:hover .video-card__media img { transform: scale(1.04); opacity: 1; }
.play {
  position: absolute; left: 50%; top: 50%; width: 84px; height: 84px; margin: -42px 0 0 -42px;
  border-radius: 50%; background: rgba(255,255,255,.95); display: grid; place-items: center; color: var(--terra);
  box-shadow: 0 0 0 10px rgba(255,255,255,.18); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.play svg { width: 28px; height: 28px; margin-left: 4px; }
.video-card:hover .play { transform: scale(1.08); box-shadow: 0 0 0 16px rgba(255,255,255,.14); }
.video-card h3 { margin: 18px 0 4px; }
.video-card p { color: #b9ced1; margin: 0; font-size: .95rem; }
.videos .video-card:nth-child(2) .play { width: 64px; height: 64px; margin: -32px 0 0 -32px; }
@media (max-width: 800px) { .videos { grid-template-columns: 1fr; } }

/* Gallery ---------------------------------------------------------------- */
.masonry { columns: 3 300px; column-gap: 16px; }
.masonry a { display: block; margin-bottom: 16px; border-radius: var(--radius-sm); overflow: hidden; break-inside: avoid; position: relative; background: var(--sand-2); }
.masonry img { width: 100%; transition: transform 1s var(--ease), opacity .6s; }
.masonry a:hover img { transform: scale(1.04); }
.masonry a::after {
  content: ""; position: absolute; inset: 0; background: rgba(8,25,31,.0); transition: background .3s;
}
.masonry a:hover::after { background: rgba(8,25,31,.15); }
.masonry a[hidden] { display: none; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 40px; }
.filters button {
  border: 1px solid var(--line); background: transparent; border-radius: 999px; padding: 10px 20px; font-weight: 600; font-size: .92rem; cursor: pointer;
  transition: all .25s var(--ease);
}
.filters button:hover { border-color: var(--ink); }
.filters button[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.filters sup { font-size: .7em; opacity: .6; margin-left: 3px; }

.gallery-strip { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 240px 240px; gap: 14px; }
.gallery-strip a { position: relative; border-radius: var(--radius-sm); overflow: hidden; background: var(--sand-2); }
.gallery-strip a:first-child { grid-row: span 2; }
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gallery-strip a:hover img { transform: scale(1.05); }
.gallery-strip .more { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; background: rgba(14,74,90,.72); color: #fff; font-weight: 700; }
.gallery-strip .more b { display: block; font-family: var(--serif); font-weight: 400; font-size: 2.4rem; line-height: 1; }
@media (max-width: 760px) {
  .gallery-strip { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 140px 140px; }
  .gallery-strip a:first-child { grid-column: span 2; grid-row: span 1; }
}

/* Split (food, location) ---------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 96px); align-items: center; }
.split--rev > :first-child { order: 2; }
.split__media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.checks { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; }
.checks svg { width: 22px; height: 22px; flex: none; color: var(--sea-2); margin-top: 2px; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--rev > :first-child { order: 0; } }

.map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3; background: var(--sand-2); }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

.contact-list { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 18px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list .ico { width: 46px; height: 46px; flex: none; border-radius: 50%; background: var(--sea-3); color: var(--sea); display: grid; place-items: center; }
.contact-list .ico svg { width: 20px; height: 20px; }
.contact-list small { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.contact-list a, .contact-list span { font-weight: 600; color: var(--ink); font-size: 1.05rem; }
.contact-list a:hover { color: var(--terra); }

/* Page hero (inner pages) --------------------------------------------------- */
.page-hero { position: relative; min-height: 440px; display: grid; align-items: end; color: #fff; overflow: hidden; background: #0d2a33; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,25,31,.78), rgba(8,25,31,.1) 70%); }
.page-hero .wrap { position: relative; z-index: 2; padding-block: 120px 56px; }
.page-hero h1 { color: #fff; margin: 0; font-size: clamp(2.6rem, 6vw, 4.6rem); }
.page-hero p { margin: 12px 0 0; max-width: 52ch; color: rgba(255,255,255,.88); font-size: 1.1rem; }
.crumbs { display: flex; gap: 8px; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-bottom: 14px; }
.crumbs a:hover { color: #fff; }

/* Room detail -------------------------------------------------------------- */
.room-detail { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.room-detail + .room-detail { margin-top: clamp(80px, 10vw, 140px); padding-top: clamp(80px, 10vw, 140px); border-top: 1px solid var(--line); }
.room-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.room-gallery a { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1; background: var(--sand-2); }
.room-gallery a:first-child { grid-column: 1 / -1; aspect-ratio: 3 / 2; border-radius: var(--radius); }
.room-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.room-gallery a:hover img { transform: scale(1.05); }
.room-info { position: sticky; top: calc(var(--header-h) + 24px); }
.room-info .specs { margin-bottom: 26px; padding: 18px 0; border-block: 1px solid var(--line); }
.features { list-style: none; padding: 0; margin: 0 0 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; }
.features li { display: flex; align-items: center; gap: 10px; font-size: .95rem; }
.features svg { width: 20px; height: 20px; color: var(--terra); flex: none; }
.room-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.tour-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tour-links a { font-size: .85rem; font-weight: 600; padding: 7px 14px; border: 1px solid var(--line); border-radius: 999px; }
.tour-links a:hover { border-color: var(--ink); }
@media (max-width: 900px) { .room-detail { grid-template-columns: 1fr; } .room-info { position: static; } }

/* Article (Akyaka) ------------------------------------------------------- */
.prose { max-width: 70ch; }
.prose h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-2); }
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 16px; margin: 40px 0 0; }
.fact { background: var(--sand); border-radius: var(--radius-sm); padding: 22px; }
.fact b { display: block; font-family: var(--serif); font-weight: 400; font-size: 1.9rem; color: var(--sea); line-height: 1.1; }
.fact span { font-size: .88rem; color: var(--muted); }
.aside-sticky { position: sticky; top: calc(var(--header-h) + 24px); }
.two-col { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } .aside-sticky { position: static; } }

.place { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; scroll-margin-top: 110px; }
.place + .place { margin-top: clamp(64px, 8vw, 110px); }
.place:nth-child(even) > :first-child { order: 2; }
.place__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16 / 10; background: var(--sand-2); }
.place__media img { width: 100%; height: 100%; object-fit: cover; }
.place small { font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--terra); }
.place h3 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 8px 0 14px; }
.place p { color: var(--ink-2); }
.place .meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.place .meta span { font-size: .82rem; font-weight: 600; background: var(--sea-3); color: var(--sea); padding: 6px 12px; border-radius: 999px; }
@media (max-width: 860px) { .place { grid-template-columns: 1fr; } .place:nth-child(even) > :first-child { order: 0; } }

.toc { display: flex; flex-wrap: wrap; gap: 8px; }
.toc a { padding: 9px 16px; border-radius: 999px; background: #fff; font-weight: 600; font-size: .9rem; box-shadow: var(--shadow-sm); }
.toc a:hover { background: var(--ink); color: #fff; }

/* Contact page ------------------------------------------------------------ */
.card { background: #fff; border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form .full { grid-column: 1 / -1; }
.form label { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.form input, .form select, .form textarea {
  width: 100%; border: 1px solid var(--line); background: var(--paper); border-radius: var(--radius-sm);
  padding: 13px 15px; font-size: 1rem; transition: border-color .2s, background .2s;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--sea-2); background: #fff; }
.form textarea { min-height: 130px; resize: vertical; }
.form .btn { justify-self: start; }
.form-hint { font-size: .85rem; color: var(--muted); margin: 0; }
@media (max-width: 560px) { .form { grid-template-columns: 1fr; } }

.bank { display: grid; gap: 14px; }
.bank__item { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 20px; background: var(--paper); }
.bank__item h4 { font-family: var(--sans); font-size: .95rem; font-weight: 800; margin: 0 0 6px; letter-spacing: .02em; }
.bank__item p { margin: 0; font-size: .92rem; color: var(--muted); }
.iban { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 10px; padding: 10px 12px; background: #fff; border-radius: 8px; border: 1px dashed var(--sand-2); }
.iban code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .9rem; color: var(--ink); overflow-wrap: anywhere; }
.copy { border: 0; background: var(--sea-3); color: var(--sea); font-weight: 700; font-size: .78rem; padding: 7px 12px; border-radius: 999px; cursor: pointer; flex: none; }
.copy:hover { background: var(--sea); color: #fff; }

/* CTA -------------------------------------------------------------------- */
.cta { position: relative; overflow: hidden; border-radius: calc(var(--radius) + 6px); color: #fff; padding: clamp(48px, 7vw, 90px) clamp(28px, 6vw, 80px); display: grid; grid-template-columns: 1.4fr auto; gap: 30px; align-items: center; isolation: isolate; }
.cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,25,31,.85), rgba(8,25,31,.35)); z-index: -1; }
.cta h2 { color: #fff; margin: 0 0 10px; }
.cta p { margin: 0; color: rgba(255,255,255,.85); max-width: 48ch; }
.cta__actions { display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 760px) { .cta { grid-template-columns: 1fr; } .cta__actions { flex-direction: row; flex-wrap: wrap; } }

/* Footer ----------------------------------------------------------------- */
.footer { background: var(--ink); color: #9fb0b5; padding-top: clamp(64px, 8vw, 100px); font-size: .95rem; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 60px; }
.footer .logo { color: #fff; margin-bottom: 18px; }
.footer h4 { font-family: var(--sans); font-size: .76rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.social { display: flex; gap: 10px; margin-top: 22px; }
.social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; transition: background .25s, border-color .25s; }
.social a:hover { background: var(--terra); border-color: var(--terra); }
.social svg { width: 18px; height: 18px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .84rem; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* Floating WhatsApp ---------------------------------------------------------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 40; width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px -8px rgba(0,0,0,.4);
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* Lightbox ---------------------------------------------------------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(6, 16, 20, .96);
  display: grid; grid-template-rows: auto 1fr auto; opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__top { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; color: #cfdadd; font-size: .9rem; }
.lightbox__stage { position: relative; display: grid; place-items: center; padding: 0 70px; min-height: 0; }
.lightbox__stage img { max-width: 100%; max-height: calc(100svh - 140px); width: auto; height: auto; object-fit: contain; border-radius: 6px; box-shadow: 0 30px 80px -20px #000; }
.lightbox__stage iframe { width: min(1200px, 100%); aspect-ratio: 16 / 9; border: 0; border-radius: 8px; background: #000; }
.lightbox__caption { text-align: center; padding: 14px 18px 22px; color: #cfdadd; font-family: var(--serif); font-size: 1.15rem; }
.lb-btn {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.06);
  color: #fff; display: grid; place-items: center; cursor: pointer; transition: background .2s;
}
.lb-btn:hover { background: rgba(255,255,255,.18); }
.lb-btn svg { width: 22px; height: 22px; }
.lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); }
.lb-prev { left: 12px; } .lb-next { right: 12px; }
@media (max-width: 640px) {
  .lightbox__stage { padding: 0 8px; }
  .lb-prev, .lb-next { top: auto; bottom: -62px; transform: none; }
  .lb-prev { left: calc(50% - 60px); } .lb-next { right: calc(50% - 60px); }
  .lightbox__caption { padding-bottom: 80px; }
}

/* Reveal ------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .2s; } .reveal-d3 { transition-delay: .3s; }
img.lazy-fade { opacity: 0; transition: opacity .7s var(--ease), transform 1s var(--ease); }
img.lazy-fade.is-loaded { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal, img.lazy-fade { opacity: 1; transform: none; }
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 200; background: #fff; padding: 10px 16px; border-radius: 8px; }
.skip:focus { left: 8px; }
.eyebrow svg { width: 16px; height: 16px; }
@media (min-width: 901px) {
  .exp:nth-child(n+4) .exp__body p { display: none; }
  .exp:nth-child(n+4) .exp__body h3 { font-size: 1.3rem; }
}
.exp::before { background: linear-gradient(0deg, rgba(8,25,31,.85), rgba(8,25,31,.1) 65%); }
@media (max-width: 760px) {
  .hero::after { background: linear-gradient(0deg, rgba(8,25,31,.88) 0%, rgba(8,25,31,.45) 55%, rgba(8,25,31,.25) 100%); }
  .hero__caption, .hero__dots { display: none; }
}

/* 360° sanal tur ---------------------------------------------------------- */
.tour { display: grid; grid-template-columns: 1fr 360px; height: calc(100svh - var(--header-h) - 38px); min-height: 520px; background: #0b1c22; }
.tour__viewer { position: relative; min-width: 0; }
#pano { position: absolute; inset: 0; }
.tour__title { position: absolute; left: 20px; top: 18px; z-index: 3; pointer-events: none; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.tour__title .tour__scene { color: #fff; font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.1; margin: 4px 0 0; }
.tour__toggle { display: none; position: absolute; right: 16px; bottom: 16px; z-index: 3; }
.tour__hint { position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%); z-index: 3; margin: 0; padding: 8px 16px; border-radius: 999px; background: rgba(8,25,31,.6); color: #dbe6e8; font-size: .82rem; pointer-events: none; white-space: nowrap; backdrop-filter: blur(6px); }
.tour__list { overflow-y: auto; padding: 22px 20px 28px; background: var(--paper); border-left: 1px solid var(--line); }
.tour__list h2 { font-family: var(--sans); font-size: .74rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin: 18px 0 10px; }
.tour__list h2:first-child { margin-top: 0; }
.tour__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tour__item { position: relative; padding: 0; border: 2px solid transparent; border-radius: 10px; overflow: hidden; background: var(--sand-2); cursor: pointer; text-align: left; aspect-ratio: 3 / 2; transition: border-color .2s, transform .2s; }
.tour__item:hover { transform: translateY(-2px); }
.tour__item[aria-current] { border-color: var(--terra); }
.tour__item img { width: 100%; height: 100%; object-fit: cover; }
.tour__item span { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 8px 6px; font-size: .8rem; font-weight: 700; color: #fff; background: linear-gradient(0deg, rgba(8,25,31,.85), transparent); }

/* Pannellum geçiş noktaları */
.tour-spot { width: 44px; height: 44px; margin: -22px 0 0 -22px; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.95) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b95b33' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 19V5M5 12l7-7 7 7'/%3E%3C/svg%3E") center / 22px no-repeat;
  box-shadow: 0 0 0 8px rgba(255,255,255,.25), 0 6px 18px rgba(0,0,0,.35); transition: transform .2s, box-shadow .2s; }
.tour-spot:hover { transform: scale(1.12); box-shadow: 0 0 0 12px rgba(255,255,255,.3), 0 6px 18px rgba(0,0,0,.35); }
.tour-spot__label { position: absolute; left: 50%; bottom: calc(100% + 14px); transform: translateX(-50%); white-space: nowrap; background: var(--ink); color: #fff; font: 700 .82rem/1 var(--sans); padding: 8px 12px; border-radius: 999px; pointer-events: none; }
.pnlm-container { background: #0b1c22 !important; font-family: var(--sans) !important; }
.pnlm-load-box { background: rgba(8,25,31,.8) !important; border-radius: 14px !important; }
.pnlm-controls { border-radius: 10px !important; overflow: hidden; border: 0 !important; box-shadow: var(--shadow-sm); }
.pnlm-controls-container { top: auto !important; bottom: 16px; left: 16px !important; }

@media (max-width: 900px) {
  .tour { grid-template-columns: 1fr; }
  .tour__toggle { display: inline-flex; }
  .tour__hint { display: none; }
  .tour__list { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; max-height: 72svh; border-radius: 20px 20px 0 0; border: 0; box-shadow: 0 -20px 50px rgba(0,0,0,.35); transform: translateY(105%); transition: transform .35s var(--ease); }
  .tour__list.is-open { transform: none; }
  .tour__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) { .tour__grid { grid-template-columns: 1fr 1fr; } }
.tour__close { display: none; position: sticky; top: 0; float: right; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: #fff; font-size: 1.4rem; line-height: 1; cursor: pointer; z-index: 2; }
@media (max-width: 900px) { .tour__close { display: block; } }
.pnlm-panorama-info { display: none !important; }
.tour__viewer::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 140px; z-index: 2; pointer-events: none; background: linear-gradient(180deg, rgba(8,25,31,.55), transparent); }
.page-tour .wa-float { display: none; }
.lb-media { width: 100%; height: 100%; display: grid; place-items: center; min-height: 0; }
.lightbox__stage .lb-media iframe { width: min(1280px, 100%, calc((100svh - 150px) * 16 / 9)); height: auto; aspect-ratio: 16 / 9; }
.lb-btn[hidden] { display: none; }

/* SSS */
.faq { display: grid; gap: 10px; }
.faq details { background: var(--paper); border-radius: var(--radius-sm); border: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 52px 18px 22px; font-weight: 700; color: var(--ink); position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; font-weight: 400; color: var(--terra); transition: transform .25s var(--ease); }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { margin: 0; padding: 0 22px 20px; color: var(--ink-2); }
