/* ────────────────────────────────────────────────────────────
   HOTEL INFINITY BEACH — Luxury Resort Design System
   ──────────────────────────────────────────────────────────── */

:root {
  /* Palette — Mediterranean / Alanya sand & sea */
  --ivory: #faf7f2;
  --bone: #f3eee5;
  --sand: #e7dfd0;
  --stone: #cbc2b1;
  --line: #e8e2d4;
  --line-soft: #efebe1;

  --ink: #0e1922;       /* deep ocean ink */
  --ink-soft: #2a3742;
  --muted: #6b7682;
  --muted-2: #9aa3ad;

  --turq: #4fb3aa;      /* turquoise accent */
  --turq-deep: #1e7a73;
  --ocean: #103a52;     /* deep ocean blue */
  --ocean-deep: #0a2235;
  --gold: #b89968;      /* warm sand-gold accent */

  --shadow-sm: 0 2px 10px rgba(14, 25, 34, 0.04);
  --shadow-md: 0 18px 50px -20px rgba(14, 25, 34, 0.18);
  --shadow-lg: 0 40px 100px -30px rgba(14, 25, 34, 0.35);

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --container: 1280px;
  --container-wide: 1480px;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ─── Typography ─────────────────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.eyebrow.light { color: rgba(255,255,255,0.75); }

.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--ink);
}
.display em { font-style: italic; color: var(--ocean); font-weight: 300; }

h2.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 78px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
h2.section-title em { font-style: italic; color: var(--ocean); font-weight: 300; }

.section-lede {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s, color 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--ivory);
}
.btn-primary:hover { background: var(--ocean); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--ivory); }
.btn-ghost.light { color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-ghost.light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  transition: gap 0.3s;
}
.btn-link:hover { gap: 16px; }

/* ─── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  transition: background 0.45s, color 0.45s, padding 0.45s, backdrop-filter 0.45s;
}
/* Parlak görsel üzerinde okunabilirlik için gölge (yalnızca şeffaf/üstte iken) */
.nav:not(.scrolled) { text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45); }
.nav.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--ink);
  padding: 16px 40px;
  border-bottom: 1px solid var(--line);
  text-shadow: none;
}
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif);
}
.nav-logo .mark {
  font-size: 26px;
  font-style: italic;
  letter-spacing: -0.01em;
}
.nav-logo .sub {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.85;
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a { opacity: 0.85; transition: opacity 0.3s; }
.nav-links a:hover { opacity: 1; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-lang {
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 500;
}
.nav-reserve {
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.3s;
}
.nav-reserve:hover { background: rgba(255,255,255,0.28); }
.nav.scrolled .nav-reserve {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.nav.scrolled .nav-reserve:hover { background: var(--ocean); border-color: var(--ocean); }

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 40px 60px;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 25, 34, 0.58) 0%, rgba(14, 25, 34, 0.0) 32%, rgba(14, 25, 34, 0.05) 55%, rgba(14, 25, 34, 0.72) 100%);
  z-index: 2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1.05) translate3d(0, 0, 0); }
  100% { transform: scale(1.18) translate3d(-2%, -1%, 0); }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--container-wide);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  padding-bottom: 50px;
}
.hero-text .eyebrow { color: rgba(255,255,255,0.85); }
.hero-text .eyebrow::before { background: rgba(255,255,255,0.6); }
/* Hero metinlerine yumuşak gölge — açık gökyüzü üzerinde de okunsun */
.hero-text .eyebrow,
.hero-title,
.hero-sub,
.hero-meta { text-shadow: 0 2px 22px rgba(0, 0, 0, 0.38); }
.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 8vw, 124px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 24px 0 28px;
  color: #fff;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: #cfe9e6;
}
.hero-sub {
  max-width: 460px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin: 0 0 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-ctas .btn-primary { background: #fff; color: var(--ink); }
.hero-ctas .btn-primary:hover { background: var(--turq); color: #fff; }

.hero-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-top: 36px;
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hero-meta .stat-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

/* Hero booking card */
.booking-card {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(28px) saturate(120%);
  -webkit-backdrop-filter: blur(28px) saturate(120%);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.booking-card-title {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.booking-card-title::before { content: ""; width: 6px; height: 6px; background: var(--turq); border-radius: 50%; }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.booking-field {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 14px 16px;
  cursor: pointer;
  transition: background 0.3s;
}
.booking-field:hover { background: rgba(255,255,255,0.18); }
.booking-field.full { grid-column: 1 / -1; }
.booking-field .label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.booking-field .value {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-top: 4px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.booking-field .value .small {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.booking-submit {
  margin-top: 18px;
  width: 100%;
  background: var(--turq);
  color: #fff;
  padding: 17px 28px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s, transform 0.3s;
}
.booking-submit:hover { background: var(--turq-deep); transform: translateY(-1px); }
.booking-footnote {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-align: center;
}
.booking-footnote strong { color: #fff; font-weight: 600; }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: scrollnudge 2.4s ease-in-out infinite;
}
@keyframes scrollnudge {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.4); transform-origin: top; }
}

/* ─── Sections ───────────────────────────────────────────── */
section {
  position: relative;
  padding: 140px 40px;
}
.container {
  max-width: var(--container-wide);
  margin: 0 auto;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 80px;
}
.section-head .right { display: flex; justify-content: flex-end; align-items: end; }

/* ─── Intro / Promise strip ──────────────────────────────── */
.intro {
  padding: 120px 40px 60px;
  background: var(--ivory);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}
.intro h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 24px 0 0;
}
.intro h2 em { font-style: italic; color: var(--ocean); }
.intro-body p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 22px;
  max-width: 560px;
}
.intro-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.intro-stats .stat-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 44px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.intro-stats .stat-label {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── Experience editorial ──────────────────────────────── */
.experience { background: var(--ivory); padding-top: 60px; }
.experience-list { display: flex; flex-direction: column; gap: 140px; }
.experience-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 80px;
  align-items: center;
}
.experience-row.reverse { grid-template-columns: 1fr 1.25fr; }
.experience-row.reverse .experience-image { order: 2; }
.experience-row.reverse .experience-copy { order: 1; }
.experience-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}
.experience-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.experience-image:hover img { transform: scale(1.04); }
.experience-image .index-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.experience-copy .number {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--turq-deep);
  margin-bottom: 16px;
}
.experience-copy h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.experience-copy h3 em { font-style: italic; color: var(--ocean); }
.experience-copy p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 460px;
}
.experience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.experience-tags span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

/* ─── Rooms ─────────────────────────────────────────────── */
.rooms { background: var(--bone); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.room-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s;
  display: flex;
  flex-direction: column;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.room-image {
  position: relative;
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
}
.room-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.2,0.8,0.2,1); }
.room-card:hover .room-image img { transform: scale(1.06); }
.room-price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 10px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
}
.room-price-badge .from {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.room-price-badge .num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.room-price-badge .num span { font-size: 12px; opacity: 0.6; margin-left: 4px; font-weight: 400; }
.room-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(14,25,34,0.55);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.room-body { padding: 28px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.room-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.room-body .subtitle {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 18px 0 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
}
.room-features span { display: inline-flex; align-items: center; gap: 8px; }
.room-features svg { width: 16px; height: 16px; color: var(--turq-deep); }
.room-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.room-cta .btn-link { font-size: 12px; color: var(--ink); border-color: var(--ink); }

/* ─── Facilities ─────────────────────────────────────────── */
.facilities { background: var(--ivory); }
.fac-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.fac-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform 0.4s, box-shadow 0.4s, background 0.4s, color 0.4s;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 220px;
}
.fac-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--ocean-deep);
  color: #fff;
  border-color: var(--ocean-deep);
}
.fac-card:hover .fac-icon { background: rgba(255,255,255,0.12); color: var(--turq); }
.fac-card:hover .fac-meta { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.18); }
.fac-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--bone);
  display: flex; align-items: center; justify-content: center;
  color: var(--ocean);
  transition: background 0.4s, color 0.4s;
}
.fac-icon svg { width: 28px; height: 28px; stroke-width: 1.4; }
.fac-card h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}
.fac-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 8px 0 0;
  line-height: 1.55;
}
.fac-card:hover p { color: rgba(255,255,255,0.72); }
.fac-meta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  transition: color 0.4s, border-color 0.4s;
}

/* ─── Gallery ─────────────────────────────────────────────── */
.gallery { background: var(--bone); }
.masonry {
  column-count: 4;
  column-gap: 20px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.4s cubic-bezier(0.2,0.8,0.2,1);
}
.masonry-item:hover img { transform: scale(1.05); }
.masonry-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14,25,34,0.5));
  opacity: 0;
  transition: opacity 0.4s;
}
.masonry-item:hover::after { opacity: 1; }
.masonry-item .tag {
  position: absolute;
  bottom: 18px; left: 18px;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
  z-index: 2;
}
.masonry-item:hover .tag { opacity: 1; transform: translateY(0); }

/* ─── Testimonials ───────────────────────────────────────── */
.testimonials { background: var(--ivory); }
.test-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.test-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.4s, box-shadow 0.4s;
}
.test-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.test-stars { color: var(--gold); letter-spacing: 4px; font-size: 14px; }
.test-card blockquote {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
  font-weight: 400;
  text-wrap: pretty;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.test-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ocean);
}
.test-author .name { font-size: 14px; font-weight: 600; }
.test-author .meta { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

/* ─── Location / Map ────────────────────────────────────── */
.location {
  background: var(--ocean-deep);
  color: #fff;
  padding: 140px 40px;
}
.location .container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.location h2 { color: #fff; }
.location h2 em { color: var(--turq); }
.location p { color: rgba(255,255,255,0.7); font-size: 17px; line-height: 1.65; }
.location-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.location-item {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.location-item .lbl {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.location-item .val { font-family: var(--serif); font-size: 22px; font-weight: 300; }
.location-item .dist {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--turq);
  letter-spacing: 0.05em;
}
.map-frame {
  position: relative;
  aspect-ratio: 4 / 4.6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #08182a;
}
.map-frame svg { width: 100%; height: 100%; display: block; }
.map-pin {
  position: absolute;
  top: 48%; left: 52%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.map-pin .dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--turq);
  box-shadow: 0 0 0 6px rgba(79,179,170,0.25), 0 0 0 16px rgba(79,179,170,0.12);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(79,179,170,0.25), 0 0 0 16px rgba(79,179,170,0.12); }
  50% { box-shadow: 0 0 0 10px rgba(79,179,170,0.35), 0 0 0 24px rgba(79,179,170,0.05); }
}
.map-pin .label {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

/* ─── CTA banner ────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 0;
  background: var(--ivory);
}
.cta-banner-inner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 0 40px;
  padding: 100px 60px;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.cta-banner-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,25,34,0.4), rgba(14,25,34,0.6));
}
.cta-banner-inner > * { position: relative; }
.cta-banner h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1;
  margin: 18px 0 18px;
  letter-spacing: -0.02em;
  color: #fff;
}
.cta-banner h2 em { font-style: italic; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 480px; margin: 0 auto 32px; font-size: 17px; }
.cta-banner .btn-primary { background: #fff; color: var(--ink); }
.cta-banner .btn-primary:hover { background: var(--turq); color: #fff; }

/* ─── Footer ───────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 100px 40px 40px;
}
.footer-grid {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .mark {
  font-family: var(--serif);
  font-size: 38px;
  font-style: italic;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.footer-brand .sub {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 320px; }
.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 0 22px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: rgba(255,255,255,0.75); font-size: 14px; transition: color 0.3s; }
.footer-col a:hover { color: #fff; }
.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.footer-cta .btn { width: 100%; padding: 16px; }
.footer-cta .btn-wa {
  background: #25D366; color: #fff;
}
.footer-cta .btn-wa:hover { background: #1ebe57; }
.footer-cta .btn-res {
  background: var(--turq); color: #fff;
}
.footer-cta .btn-res:hover { background: var(--turq-deep); }
.footer-bottom {
  max-width: var(--container-wide);
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  transition: background 0.3s, color 0.3s;
}
.footer-social a:hover { background: var(--turq); color: #fff; }
.footer-social svg { width: 16px; height: 16px; }

/* ─── Mobile floating dock ─────────────────────────────── */
.dock {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: rgba(14, 25, 34, 0.55);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 8px;
  gap: 4px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.dock button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s;
}
.dock button:hover { background: rgba(255,255,255,0.1); }
.dock .primary {
  background: var(--turq);
  color: #fff;
  padding: 14px 22px;
}
.dock .primary:hover { background: var(--turq-deep); }
.dock .wa { background: #25D366; }
.dock .wa:hover { background: #1ebe57; }
.dock svg { width: 16px; height: 16px; }

/* ─── Scroll reveal ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s cubic-bezier(0.2,0.8,0.2,1), transform 1s cubic-bezier(0.2,0.8,0.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; padding-bottom: 30px; }
  .booking-card { max-width: 520px; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .fac-grid { grid-template-columns: repeat(2, 1fr); }
  .test-track { grid-template-columns: 1fr; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-stats { grid-template-columns: repeat(2, 1fr); }
  .experience-row, .experience-row.reverse { grid-template-columns: 1fr; gap: 40px; }
  .experience-row.reverse .experience-image { order: 0; }
  .experience-row.reverse .experience-copy { order: 0; }
  .location .container { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .masonry { column-count: 3; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head .right { justify-content: flex-start; }
}
@media (max-width: 720px) {
  .nav { padding: 16px 20px; gap: 12px; }
  .nav-links { display: none; }
  .nav-lang { display: none; }
  .nav-logo { flex-direction: column; align-items: flex-start; gap: 2px; min-width: 0; }
  .nav-logo .mark { font-size: 21px; line-height: 1; }
  .nav-logo .sub { letter-spacing: 0.2em; font-size: 8px; }
  .nav-actions { gap: 10px; }
  .nav-reserve { padding: 9px 15px; font-size: 11px; letter-spacing: 0.1em; }
  section { padding: 80px 20px; }
  .intro { padding: 80px 20px 30px; }
  /* Sabit nav'ın altından başlat — hero metni nav ile çakışmasın */
  .hero { justify-content: flex-start; min-height: auto; padding: 104px 20px 64px; }
  .hero-title { font-size: clamp(44px, 11vw, 68px); margin: 18px 0 22px; }
  .booking-grid { grid-template-columns: 1fr 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .fac-grid { grid-template-columns: 1fr 1fr; }
  .masonry { column-count: 2; column-gap: 12px; }
  .masonry-item { margin-bottom: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer-bottom { flex-direction: column; gap: 20px; }
  .cta-banner-inner { margin: 0 20px; padding: 70px 30px; }
  .location { padding: 80px 20px; }
  .location-item { grid-template-columns: 110px 1fr; }
  .location-item .dist { grid-column: 2; }
  .dock { display: inline-flex; }
  .nav.scrolled .nav-reserve { padding: 10px 16px; font-size: 11px; }
  .hero-meta { flex-wrap: wrap; gap: 16px; }
  .hero-scroll { display: none; }
}
@media (max-width: 480px) {
  /* Çok dar ekranlarda logo mark + alt yazı yan yana sığmıyor → dikey yığ */
  .nav { padding: 14px 16px; }
  .nav-logo { flex-direction: column; align-items: flex-start; gap: 2px; }
  .nav-logo .mark { font-size: 19px; }
  .nav-logo .sub { letter-spacing: 0.18em; font-size: 7.5px; }
  .nav-reserve { padding: 8px 13px; font-size: 10px; letter-spacing: 0.08em; }
}
