:root {
  --bg: #faf9f7;
  --bg-alt: #f3f1ec;
  --surface: #ffffff;
  --ink: #222222;
  --ink-soft: #6a6a6a;
  --line: #ebebeb;
  --gold: #b8955a;
  --gold-deep: #9a7a45;
  --navy: #1b2a3a;
  --navy-soft: #2c4054;
  --wa: #25d366;
  --call: #1b2a3a;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 8px 28px rgba(27, 42, 58, 0.08);
  --shadow-lg: 0 18px 50px rgba(27, 42, 58, 0.14);
  --header-h: 76px;
  --font: "Poppins", system-ui, sans-serif;
  --display: "Poppins", system-ui, sans-serif;
  --container: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(184, 149, 90, 0.12), transparent 55%),
    radial-gradient(900px 400px at 100% 0%, rgba(27, 42, 58, 0.06), transparent 50%),
    var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1rem; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.narrow { width: min(100% - 2rem, 760px); }

.content-narrow {
  max-width: 760px;
  margin-inline: auto;
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

.page-kimlik,
.page-iletisim {
  overflow-x: clip;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-cluster {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(184, 149, 90, 0.35);
  flex-shrink: 0;
}
.brand-airbnb-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  transition: opacity 0.2s var(--ease);
}
.brand-airbnb-link:hover {
  opacity: 0.82;
}
.brand-airbnb {
  height: 22px;
  width: auto;
  max-width: 92px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-deep);
}
.brand-place {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav--drawer {
  display: none;
}
.nav-drawer-top,
.nav-backdrop {
  display: none;
}
.nav-link {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover,
.nav-link.is-active {
  color: var(--ink);
  background: rgba(184, 149, 90, 0.12);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.lang-dropdown {
  position: relative;
}
.lang-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  height: 40px;
  padding: 0 0.7rem 0 0.45rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.lang-dropdown-toggle:hover,
.lang-dropdown.is-open .lang-dropdown-toggle {
  border-color: rgba(184, 149, 90, 0.55);
  box-shadow: 0 4px 14px rgba(27, 42, 58, 0.08);
}
.lang-dropdown-toggle img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}
.lang-code {
  line-height: 1;
}
.lang-caret {
  width: 10px;
  height: 7px;
  color: var(--ink-soft);
  transition: transform 0.2s var(--ease);
}
.lang-dropdown.is-open .lang-caret {
  transform: rotate(180deg);
}
.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  z-index: 130;
  min-width: 132px;
  padding: 0.35rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(27, 42, 58, 0.14);
}
.lang-dropdown-menu[hidden] {
  display: none;
}
.lang-dropdown-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: background 0.2s;
}
.lang-dropdown-option img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}
.lang-dropdown-option:hover {
  background: rgba(184, 149, 90, 0.1);
}
.lang-dropdown-option.is-active {
  background: rgba(184, 149, 90, 0.16);
  color: var(--gold-deep);
}

.lang-switch--drawer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: none;
  flex-direction: row;
  gap: 0.5rem;
}
.lang-switch--drawer .lang-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: auto;
  height: auto;
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  opacity: 1;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.lang-switch--drawer .lang-btn img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}
.lang-switch--drawer .lang-btn.is-active {
  background: rgba(184, 149, 90, 0.12);
  border-color: rgba(184, 149, 90, 0.45);
  color: var(--gold-deep);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 0.95rem 1.45rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  box-shadow: 0 8px 20px rgba(184, 149, 90, 0.28);
}
.btn-primary:hover { box-shadow: 0 12px 28px rgba(184, 149, 90, 0.36); }
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--surface); }
.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
}
.btn-light:hover { background: #fff; }

.text-link {
  font-weight: 600;
  color: var(--gold-deep);
  border-bottom: 1px solid transparent;
}
.text-link:hover { border-color: currentColor; }

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}
picture {
  display: contents;
}
.hero-media,
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.hero-media img,
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 12s var(--ease) forwards;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 24, 34, 0.18) 0%, rgba(15, 24, 34, 0.55) 55%, rgba(15, 24, 34, 0.78) 100%),
    linear-gradient(90deg, rgba(15, 24, 34, 0.45), transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 3.5rem;
  max-width: 760px;
  margin-left: max(1rem, calc((100% - var(--container)) / 2));
  margin-right: auto;
  width: min(100% - 2rem, 760px);
  animation: riseIn 0.9s var(--ease) both;
}
.hero-brand,
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--gold);
}
.eyebrow-light,
.hero-brand { color: #e8d4ad; }
.hero-lead,
.page-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 36rem;
}
.page-lead { color: var(--ink-soft); }
.page-lead-light { color: rgba(255, 255, 255, 0.9); }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-hero {
  padding: 3.5rem 0 1.5rem;
}
.page-hero--compact {
  background:
    linear-gradient(180deg, rgba(184, 149, 90, 0.08), transparent);
}
.page-hero--image {
  position: relative;
  min-height: 42vh;
  display: grid;
  align-items: end;
  color: #fff;
  padding: 0;
  overflow: hidden;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 2.5rem;
  animation: riseIn 0.8s var(--ease) both;
}

/* Sections */
.section {
  padding: 4.5rem 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}
.section-alt {
  background: var(--bg-alt);
}
.hero + .section {
  content-visibility: visible;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.section-head p {
  color: var(--ink-soft);
  margin: 0;
  max-width: 36rem;
}

/* Airbnb-like photo mosaic */
.photo-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.55rem;
  border-radius: 18px;
  overflow: hidden;
  min-height: 420px;
}
.mosaic-main,
.mosaic-side a {
  position: relative;
  overflow: hidden;
  background: #ddd;
}
.mosaic-main img,
.mosaic-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.mosaic-main:hover img,
.mosaic-side a:hover img {
  transform: scale(1.04);
}
.mosaic-main { min-height: 420px; }
.mosaic-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.55rem;
}
.mosaic-side a { min-height: 200px; }
.mosaic-more {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(15, 24, 34, 0.45);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

/* Listing */
.listing-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}
.listing-copy p { color: var(--ink-soft); }
.listing-copy strong { color: var(--ink); }

.fact-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.fact-row li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.fact-row strong {
  font-family: var(--display);
  font-size: 1.7rem;
  color: var(--navy);
}
.fact-row span {
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-panel {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}
.booking-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.booking-title {
  font-family: var(--display);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.booking-text {
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.booking-panel .btn { margin-top: 0.65rem; }
.booking-notes {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.booking-notes li {
  color: var(--ink-soft);
  font-size: 0.9rem;
  padding: 0.3rem 0;
}

/* Amenities */
.amenity-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.amenity-group {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
}
.amenity-group h3 {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--gold-deep);
}
.amenity-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.15rem 0.85rem;
}
.amenity-group li {
  position: relative;
  padding: 0.28rem 0 0.28rem 0.95rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.amenity-group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
}
.amenity-grid li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 0.9rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.92rem;
}
.amenity-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(184, 149, 90, 0.12);
  color: var(--gold-deep);
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.amenity-icon svg {
  width: 20px;
  height: 20px;
}

/* Location */
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.nearby-list {
  margin: 1.25rem 0 1.5rem;
}
.nearby-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.2rem;
  color: var(--ink-soft);
}
.nearby-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.location-figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.location-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.location-figure--full img { aspect-ratio: 21 / 9; }
.location-figure figcaption {
  padding: 0.85rem 1rem;
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.rules-grid article {
  padding: 0.25rem 0;
}
.rules-grid p { color: var(--ink-soft); }

/* Guest reviews marquee */
.reviews-section {
  overflow: hidden;
  background: var(--bg);
}
.reviews-lead-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}
.reviews-lead-row p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 36rem;
}
.reviews-airbnb-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem 0.4rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.reviews-airbnb-pill img {
  height: 14px;
  width: auto;
  max-width: 58px;
  object-fit: contain;
}
.reviews-airbnb-pill:hover {
  border-color: rgba(255, 56, 92, 0.45);
  box-shadow: 0 6px 16px rgba(27, 42, 58, 0.08);
  transform: translateY(-1px);
}
.reviews-marquee {
  display: grid;
  gap: 1rem;
  margin-top: 0.25rem;
}
.reviews-row {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.reviews-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  will-change: transform;
}
.reviews-row--left .reviews-track {
  animation: reviews-left 160s linear infinite;
}
.reviews-row--right .reviews-track {
  animation: reviews-right 160s linear infinite;
}
.review-card {
  flex: 0 0 min(340px, 78vw);
  width: min(340px, 78vw);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.15rem 1.2rem;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.review-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(184, 149, 90, 0.14);
  color: var(--gold-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.review-avatar svg {
  width: 22px;
  height: 22px;
}
.review-person {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.review-person strong {
  font-size: 0.98rem;
  color: var(--navy);
}
.review-person span {
  font-size: 0.78rem;
  color: var(--ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-stars {
  display: flex;
  gap: 0.15rem;
}
.review-stars svg {
  width: 15px;
  height: 15px;
  fill: #f5b301;
}
.review-text {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 6.9em;
}
.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin-top: auto;
  font-size: 0.75rem;
  color: var(--ink-soft);
}
@keyframes reviews-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes reviews-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.cta-banner {
  padding: 4rem 0;
  background:
    linear-gradient(135deg, rgba(27, 42, 58, 0.94), rgba(44, 64, 84, 0.9)),
    url("../img/gallery/marina-drone.jpg") center/cover;
  color: #fff;
}
.cta-banner-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-banner p { color: rgba(255, 255, 255, 0.82); margin-bottom: 0; }
.cta-banner h2 { margin-bottom: 0.5rem; }

/* Gallery page */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.gallery-grid--wide {
  grid-template-columns: repeat(3, 1fr);
}
.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #ddd;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem 0.9rem 0.75rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
}

/* Çeşme / prose */
.prose-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 2.5rem;
  align-items: start;
}
.prose h2 { margin-top: 1.8rem; }
.prose p,
.prose li { color: var(--ink-soft); }
.prose ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}
.prose li { margin-bottom: 0.4rem; }
.prose a:not(.btn) {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose a.btn,
.prose a.btn-primary,
.notice-box .btn {
  color: #fff;
  text-decoration: none;
}
.prose a.btn:hover,
.prose a.btn-primary:hover,
.notice-box .btn:hover {
  color: #fff;
  text-decoration: none;
}

.info-rail {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  display: grid;
  gap: 1rem;
}
.info-rail-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
}
.info-rail-block h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.info-rail-block p,
.info-rail-block li {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin: 0;
}
.info-rail-block ul { margin-top: 0.4rem; }
.info-rail-block li { padding: 0.2rem 0; }

.cards-lite {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.cards-lite article {
  padding: 0.25rem 0.1rem;
}
.cards-lite p { color: var(--ink-soft); margin: 0; }

/* Çeşme page extras */
.cesme-toc {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: rgba(250, 249, 247, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.cesme-toc-inner {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  padding: 0.7rem 0;
  scrollbar-width: thin;
}
.cesme-toc-inner a {
  flex: 0 0 auto;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.cesme-toc-inner a:hover {
  background: rgba(184, 149, 90, 0.14);
  color: var(--ink);
}

.section-head--stack {
  flex-direction: column;
  align-items: flex-start;
}
.section-head--stack p {
  max-width: 52rem;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.topic-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.topic-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1.4rem;
}
.topic-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
  color: var(--navy);
}
.topic-card p {
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.topic-card p:last-child { margin-bottom: 0; }

.beach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.beach-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem 1.25rem;
}
.beach-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
  color: var(--gold-deep);
}
.beach-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.notice-box {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(184, 149, 90, 0.1);
  border: 1px solid rgba(184, 149, 90, 0.25);
  overflow: hidden;
}
.notice-box ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0.75rem 0 1.2rem;
}
.notice-box li { color: var(--ink-soft); margin-bottom: 0.35rem; }
.notice-box .btn {
  display: inline-flex;
  color: #fff;
}

/* Map */
.map-frame {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #dfe5ea;
  box-shadow: var(--shadow);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-address {
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
}
.contact-actions {
  display: grid;
  gap: 0.85rem;
}
.contact-card {
  display: grid;
  gap: 0.2rem;
  padding: 1.25rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease);
}
.contact-card:hover {
  border-color: rgba(184, 149, 90, 0.5);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.contact-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
}
.contact-value {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 600;
}
.contact-hint { color: var(--ink-soft); font-size: 0.9rem; }

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  padding: 3.5rem 0 1.5rem;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr 0.9fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.footer-title {
  font-family: var(--display);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.35rem;
}
.footer-tagline { margin: 0; font-size: 0.92rem; }
.footer-badge {
  display: block;
  margin-top: 0.85rem;
  height: 72px;
  width: auto;
  max-width: min(180px, 100%);
  object-fit: contain;
  cursor: zoom-in;
  transition: transform 0.2s var(--ease), opacity 0.2s;
}
a.footer-badge-link {
  display: inline-block;
  line-height: 0;
  margin-top: 0.85rem;
}
a.footer-badge-link .footer-badge {
  margin-top: 0;
}
a.footer-badge-link:hover .footer-badge {
  transform: scale(1.03);
  opacity: 0.92;
}
.footer-col h2 {
  font-family: var(--font);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e8d4ad;
  margin-bottom: 0.9rem;
}
.footer-col a:hover { color: #fff; }
.footer-col li { margin-bottom: 0.45rem; font-size: 0.95rem; }
.footer-cta p { margin-bottom: 1rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 1.25rem;
  font-size: 0.88rem;
}
.footer-bottom a { color: #e8d4ad; }
.footer-credit {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.footer-credit:hover { opacity: 1; }
.footer-credit img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Floating actions */
.float-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s var(--ease);
}
.float-btn:hover { transform: scale(1.06); }
.float-btn svg { width: 24px; height: 24px; fill: currentColor; }
.float-wa { background: var(--wa); }
.float-call { background: var(--call); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 14, 20, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox.is-open { display: flex; }
.lightbox-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  max-width: min(1100px, 100%);
}
.lightbox-stage img {
  max-width: 100%;
  max-height: calc(85vh - 64px);
  border-radius: 8px;
  object-fit: contain;
}
.lightbox-caption {
  background: #fff;
  color: var(--ink);
  padding: 0.65rem 1.15rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.lightbox-caption[hidden] { display: none; }
.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
}
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 980px) {
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }

  h1 { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  h2 { font-size: clamp(1.35rem, 5vw, 1.9rem); }
  h3 { font-size: 1.1rem; }

  .section { padding: 3rem 0; }
  .page-hero { padding: 2.5rem 0 1rem; }
  .page-hero--image { min-height: 36vh; }
  .page-hero-content { padding: 3rem 0 2rem; }

  .nav--desktop { display: none; }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(15, 24, 34, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
  }
  .nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav--drawer {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 210;
    width: min(320px, 88vw);
    margin: 0;
    padding: 1.1rem 1rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
    background: #faf9f7;
    border: 0;
    border-left: 1px solid var(--line);
    box-shadow: -18px 0 50px rgba(15, 24, 34, 0.18);
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    transform: translateX(105%);
    transition: transform 0.35s var(--ease);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav--drawer.is-open {
    transform: translateX(0);
  }

  .nav-drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.35rem 0.35rem 1rem;
    margin-bottom: 0.35rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-drawer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
  }
  .nav-close {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    color: var(--ink);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
  }

  .nav-link {
    padding: 0.95rem 0.9rem;
    border-radius: 12px;
    font-size: 1rem;
  }
  .nav-toggle { display: inline-flex; }
  body.nav-open { overflow: hidden; touch-action: none; }
  .lang-switch--drawer { display: flex; }

  .hero {
    min-height: min(85vh, 700px);
  }
  .hero-content {
    margin-left: 1rem;
    margin-right: 1rem;
    width: auto;
    max-width: none;
    padding: 5.5rem 0 2.5rem;
  }
  .hero-cta .btn,
  .cta-banner .btn {
    flex: 1 1 auto;
    min-width: min(100%, 140px);
  }

  .photo-mosaic {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 14px;
  }
  .mosaic-main {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
  .mosaic-side a { min-height: 0; aspect-ratio: 1 / 1; }

  .listing-layout,
  .location-layout,
  .prose-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .booking-panel { position: static; }
  .info-rail { position: static; }
  .amenity-groups { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .amenity-grid { grid-template-columns: 1fr 1fr; gap: 0.65rem; }
  .amenity-grid li {
    padding: 0.85rem 0.75rem;
    font-size: 0.85rem;
  }
  .rules-grid,
  .cards-lite,
  .gallery-grid,
  .gallery-grid--wide,
  .topic-grid,
  .topic-grid--2,
  .beach-grid { grid-template-columns: 1fr; }
  .fact-row { grid-template-columns: repeat(2, 1fr); }

  .contact-value {
    font-size: 1.25rem;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .section-head .btn { width: 100%; }

  .cesme-toc {
    top: var(--header-h);
  }
  .cesme-toc-inner {
    padding-block: 0.55rem;
    gap: 0.25rem;
  }

  .footer-grid { gap: 1.5rem; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .map-frame {
    height: 300px;
    min-height: 300px;
  }

  .float-actions {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
  }

  .site-footer {
    padding-bottom: 6rem;
  }

  .lightbox {
    padding: 3.5rem 0.75rem 1.25rem;
  }
  .lightbox-stage {
    max-width: 100%;
    width: 100%;
  }
  .lightbox-stage img {
    max-height: calc(70vh - 48px);
  }
  .lightbox-caption {
    max-width: 100%;
    text-align: center;
  }
  .lightbox-prev { left: 0.35rem; }
  .lightbox-next { right: 0.35rem; }
  .lightbox-close { top: 0.65rem; right: 0.65rem; }

  .location-figure--full img { aspect-ratio: 16 / 10; }
}

@media (max-width: 640px) {
  :root { --header-h: 64px; }

  .brand-logo {
    width: 44px;
    height: 44px;
  }
  .brand-airbnb {
    height: 16px;
    max-width: 68px;
  }
  .brand-name { font-size: 1.05rem; }
  .brand-place { font-size: 0.65rem; letter-spacing: 0.12em; }

  .hero { min-height: 72vh; }
  .hero-content {
    padding-top: 4.5rem;
    padding-bottom: 2rem;
  }
  .hero-cta {
    flex-direction: column;
  }
  .hero-cta .btn,
  .cta-banner .btn {
    width: 100%;
  }

  .amenity-groups { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: 1fr; }
  .mosaic-side { grid-template-columns: 1fr 1fr; }

  .btn-lg {
    padding: 0.85rem 1.15rem;
    font-size: 0.95rem;
  }

  .cta-banner { padding: 2.75rem 0; }
  .cta-banner-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .review-card {
    flex-basis: min(280px, 82vw);
    width: min(280px, 82vw);
    padding: 1rem;
  }
  .review-text {
    -webkit-line-clamp: 4;
    min-height: 5.6em;
    font-size: 0.86rem;
  }
  .reviews-row--left .reviews-track {
    animation-duration: 185s;
  }
  .reviews-row--right .reviews-track {
    animation-duration: 185s;
  }

  .booking-notes li,
  .nearby-list li {
    overflow-wrap: anywhere;
  }

  .fact-row strong { font-size: 1.35rem; }

  .float-btn {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 980px) and (min-width: 641px) {
  .beach-grid,
  .gallery-grid,
  .topic-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reviews-row {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .reviews-track {
    animation: none !important;
    transform: none !important;
  }
}
