/* ============================================================
   CASA VERANO — Gökçeada
   Palet: evin kendi renkleri
   beyaz badana, Ege gecesi, gün batımı, çini yeşili, adaçayı, kum
   ============================================================ */

:root {
  --beyaz: #FDFCFA;
  --gece: #14273D;
  --gece-koyu: #0D1B2C;
  --gunbatimi: #E07B39;
  --gunbatimi-koyu: #C4632A;
  --cini: #275D5B;
  --adacayi: #A9B79A;
  --kum: #F0EAE0;
  --metin: #2A3441;
  --metin-soluk: #6B7684;
  --cizgi: #E4DFD6;

  --f-display: "Bricolage Grotesque", "Avenir Next", sans-serif;
  --f-body: "Figtree", "Avenir", system-ui, sans-serif;

  --container: 1120px;
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 76px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--metin);
  background: var(--beyaz);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2 {
  font-family: var(--f-display);
  font-weight: 640;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--gece);
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 0.6em; }

a { color: inherit; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

/* ---------- eyebrow + çini noktası ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cini);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--adacayi); }

/* küçük çini rozeti: evin karosiman zemininden */
.tile-dot {
  width: 18px; height: 18px;
  flex: none;
  background:
    radial-gradient(circle at center, var(--gunbatimi) 0 3px, transparent 3px),
    conic-gradient(from 22.5deg,
      var(--cini) 0 45deg, transparent 45deg 90deg,
      var(--cini) 90deg 135deg, transparent 135deg 180deg,
      var(--cini) 180deg 225deg, transparent 225deg 270deg,
      var(--cini) 270deg 315deg, transparent 315deg 360deg);
  border-radius: 50%;
}
.tile-dot-light {
  background:
    radial-gradient(circle at center, var(--gunbatimi) 0 3px, transparent 3px),
    conic-gradient(from 22.5deg,
      var(--adacayi) 0 45deg, transparent 45deg 90deg,
      var(--adacayi) 90deg 135deg, transparent 135deg 180deg,
      var(--adacayi) 180deg 225deg, transparent 225deg 270deg,
      var(--adacayi) 270deg 315deg, transparent 315deg 360deg);
}

/* ---------- üst bar ---------- */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(20px, 4vw, 40px);
  color: #fff;
  text-shadow: 0 1px 8px rgba(13, 27, 44, 0.45);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.topbar.is-solid { text-shadow: none; }
.topbar.is-solid {
  background: rgba(253, 252, 250, 0.92);
  backdrop-filter: blur(10px);
  color: var(--gece);
  box-shadow: 0 1px 0 var(--cizgi);
}

.wordmark {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.wordmark em { font-style: normal; color: var(--gunbatimi); }

.topnav {
  display: flex;
  gap: 22px;
  margin-left: auto;
}
.topnav a {
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.85;
}
.topnav a:hover { opacity: 1; }

.lang-switch {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 8px 13px;
  border: 1.5px solid currentColor;
  border-radius: 99px;
  opacity: 0.9;
}
.lang-switch:hover { background: var(--gunbatimi); border-color: var(--gunbatimi); color: #fff; opacity: 1; }

.topbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  padding: 9px 16px;
  border: 1.5px solid currentColor;
  border-radius: 99px;
  white-space: nowrap;
}
.topbar-phone:hover { background: var(--gunbatimi); border-color: var(--gunbatimi); color: #fff; }

@media (max-width: 760px) {
  .topnav { display: none; }
  .topbar { justify-content: space-between; }
  .topbar-phone span { display: none; }
  .topbar-phone { padding: 10px; border-radius: 50%; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 27, 44, 0.55) 0%, rgba(13, 27, 44, 0) 26%),
    linear-gradient(6deg, rgba(13, 27, 44, 0.78) 0%, rgba(13, 27, 44, 0.25) 45%, rgba(13, 27, 44, 0) 65%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 clamp(20px, 4vw, 40px) clamp(56px, 9vh, 110px);
  color: #fff;
  animation: rise 0.9s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #F5C89A;
  margin-bottom: 16px;
}
.hero h1 { color: #fff; }
.hero-sub {
  margin-top: 18px;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 400;
  opacity: 0.92;
  max-width: 34em;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

.hero-scroll {
  position: absolute;
  bottom: 22px;
  right: clamp(20px, 4vw, 40px);
  z-index: 1;
  color: rgba(255,255,255,0.75);
  font-size: 1.3rem;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: none; } 50% { transform: translateY(8px); } }

/* ---------- butonlar ---------- */
.btn {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 99px;
  padding: 15px 30px;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--gunbatimi);
  color: #fff;
  box-shadow: 0 6px 22px rgba(224, 123, 57, 0.35);
}
.btn-primary:hover { background: var(--gunbatimi-koyu); }
.btn-ghost {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.65);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.26); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: wait; }

/* ---------- çini şeridi ---------- */
.tile-strip {
  height: 26px;
  background-color: var(--kum);
  background-image:
    radial-gradient(circle at 13px 13px, var(--gunbatimi) 0 2.5px, transparent 2.5px),
    conic-gradient(from 22.5deg at 13px 13px,
      rgba(39, 93, 91, 0.55) 0 45deg, transparent 45deg 90deg,
      rgba(39, 93, 91, 0.55) 90deg 135deg, transparent 135deg 180deg,
      rgba(39, 93, 91, 0.55) 180deg 225deg, transparent 225deg 270deg,
      rgba(39, 93, 91, 0.55) 270deg 315deg, transparent 315deg 360deg);
  background-size: 26px 26px;
}

/* ---------- bölümler ---------- */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-sand { background: var(--kum); }
.section-lede {
  max-width: 46em;
  color: var(--metin-soluk);
  margin: -0.4em 0 2em;
}

/* ---------- ev ---------- */
.ev-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.ev-text p + p { margin-top: 1em; }
.ev-text p { color: var(--metin); }

.facts {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.facts li {
  background: var(--beyaz);
  border: 1px solid var(--cizgi);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.facts strong {
  font-family: var(--f-display);
  font-size: 1.45rem;
  font-weight: 640;
  color: var(--cini);
}
.facts span { font-size: 0.88rem; color: var(--metin-soluk); }

@media (max-width: 860px) {
  .ev-grid { grid-template-columns: 1fr; }
}

/* ---------- galeri ---------- */
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.chip {
  font-family: var(--f-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 99px;
  border: 1.5px solid var(--cizgi);
  background: var(--beyaz);
  color: var(--metin);
  cursor: pointer;
  transition: all 0.18s;
}
.chip:hover { border-color: var(--cini); color: var(--cini); }
.chip.is-active { background: var(--cini); border-color: var(--cini); color: #fff; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.g-item {
  position: relative;
  border: none;
  padding: 0;
  background: none;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
}
.g-item.g-tall { grid-row: span 2; aspect-ratio: auto; }
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.g-item:hover img { transform: scale(1.045); }
.g-item:focus-visible { outline: 3px solid var(--gunbatimi); outline-offset: 2px; }
.g-item.is-hidden { display: none; }

@media (max-width: 960px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

/* ---------- yıldızlar (gece bölümü) ---------- */
.night {
  position: relative;
  background: linear-gradient(180deg, var(--gece-koyu), var(--gece));
  color: #E8ECF2;
  padding: clamp(72px, 10vw, 130px) 0;
  overflow: hidden;
}
.night h2 { color: #fff; }
.night p { color: rgba(232, 236, 242, 0.85); }

.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.2px 1.2px at 8% 22%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 21% 68%, rgba(255,255,255,0.8) 50%, transparent 51%),
    radial-gradient(1.6px 1.6px at 33% 15%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 44% 50%, rgba(255,255,255,0.7) 50%, transparent 51%),
    radial-gradient(1.4px 1.4px at 57% 28%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 66% 74%, rgba(255,255,255,0.75) 50%, transparent 51%),
    radial-gradient(1.6px 1.6px at 78% 12%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 86% 58%, rgba(255,255,255,0.8) 50%, transparent 51%),
    radial-gradient(1.2px 1.2px at 94% 34%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 14% 88%, rgba(255,255,255,0.6) 50%, transparent 51%),
    radial-gradient(1.3px 1.3px at 50% 90%, rgba(255,255,255,0.7) 50%, transparent 51%),
    radial-gradient(1px 1px at 72% 42%, rgba(255,255,255,0.65) 50%, transparent 51%);
  animation: twinkle 5s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: 0.55; } to { opacity: 1; } }

.night-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.night-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  transform: rotate(-1.2deg);
}
@media (max-width: 860px) {
  .night-grid { grid-template-columns: 1fr; }
  .night-photo { transform: none; }
}

/* ---------- olanaklar ---------- */
.amenities {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px 28px;
}
.amenities li {
  padding: 12px 0 12px 30px;
  border-bottom: 1px dashed var(--cizgi);
  position: relative;
}
.amenities li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  translate: 0 -50%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--gunbatimi) 0 2px, transparent 2px),
    conic-gradient(from 22.5deg,
      var(--adacayi) 0 45deg, transparent 45deg 90deg,
      var(--adacayi) 90deg 135deg, transparent 135deg 180deg,
      var(--adacayi) 180deg 225deg, transparent 225deg 270deg,
      var(--adacayi) 270deg 315deg, transparent 315deg 360deg);
}

/* ---------- takvim + form ---------- */
.booking-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
@media (max-width: 920px) { .booking-grid { grid-template-columns: 1fr; } }

.calendar-card {
  background: var(--beyaz);
  border: 1px solid var(--cizgi);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 30px);
}
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.cal-titles {
  display: flex;
  gap: 0;
  flex: 1;
  justify-content: space-around;
  font-family: var(--f-display);
  font-weight: 640;
  font-size: 1.1rem;
  color: var(--gece);
}
.cal-nav {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--cizgi);
  background: none;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--gece);
  cursor: pointer;
}
.cal-nav:hover:not([disabled]) { border-color: var(--cini); color: var(--cini); }
.cal-nav[disabled] { opacity: 0.3; cursor: default; }

.cal-months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 34px);
}
@media (max-width: 560px) {
  .cal-months { grid-template-columns: 1fr; }
  .cal-month:nth-child(2) { display: none; }
  .cal-titles .cal-t:nth-child(2) { display: none; }
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-dow {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--metin-soluk);
  text-align: center;
  padding: 6px 0;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: var(--f-body);
  border: none;
  background: none;
  border-radius: 9px;
  cursor: pointer;
  color: var(--metin);
  position: relative;
  transition: background 0.12s;
}
.cal-day:hover:not(.is-busy):not(.is-past):not(.is-empty) { background: rgba(39, 93, 91, 0.14); }
.cal-day.is-empty { cursor: default; }
.cal-day.is-past {
  color: #C8CCD2;
  cursor: default;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.cal-day.is-busy {
  color: #C1C6CD;
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
/* dolu güne çıkış yapılabilir: sabah boş (açık), gece dolu (gri köşe) */
.cal-day.is-cikis {
  color: var(--metin);
  cursor: pointer;
  text-decoration: none;
  background: linear-gradient(to bottom right, transparent 49.5%, rgba(193, 198, 205, 0.45) 50%);
}
.cal-day.is-cikis:hover { background-color: rgba(39, 93, 91, 0.14); }
.cal-day.is-cikis.is-sel { background-color: var(--cini); color: #fff; }
.cal-day.is-today { box-shadow: inset 0 0 0 1.5px var(--gunbatimi); }
.cal-day.is-sel {
  background: var(--cini);
  color: #fff;
  font-weight: 700;
}
.cal-day.is-range { background: rgba(39, 93, 91, 0.18); border-radius: 0; }

.cal-legend {
  display: flex;
  gap: 22px;
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--metin-soluk);
}
.cal-legend span { display: flex; align-items: center; gap: 7px; }
.leg { width: 15px; height: 15px; border-radius: 5px; display: inline-block; }
.leg-free { border: 1.5px solid var(--cizgi); background: var(--beyaz); }
.leg-busy {
  background: none;
  border: none;
  width: auto;
  border-radius: 0;
  color: #C1C6CD;
  font-style: normal;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.leg-cikis {
  border: 1.5px solid var(--cizgi);
  background: linear-gradient(to bottom right, transparent 49.5%, rgba(193, 198, 205, 0.6) 50%);
}
.leg-sel { background: var(--cini); }

/* form */
.booking-form {
  background: var(--beyaz);
  border: 1px solid var(--cizgi);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.picked {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--kum);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 14px;
  min-height: 64px;
}
.picked:has(strong:empty)::before,
.picked.is-empty::before {
  content: attr(data-empty);
  color: var(--metin-soluk);
  font-size: 0.93rem;
}
.picked.is-empty .picked-col, .picked.is-empty .picked-arrow { display: none; }
.picked-col { display: flex; flex-direction: column; }
.picked-col span {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--metin-soluk);
}
.picked-col strong { font-family: var(--f-display); font-weight: 640; color: var(--gece); font-size: 1.02rem; }
.picked-arrow { color: var(--gunbatimi); font-weight: 700; }
.picked-col:last-child { margin-left: auto; text-align: right; }

/* fiyat kutusu */
.price-box {
  background: var(--kum);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 4px 0;
}
.price-row.price-total {
  border-top: 1px dashed var(--cizgi);
  margin-top: 6px;
  padding-top: 10px;
  font-weight: 600;
  color: var(--gece);
}
.price-row.price-total strong { font-family: var(--f-display); font-size: 1.15rem; }
.price-row.price-platform { color: var(--metin-soluk); font-size: 0.9rem; }
.price-row.price-platform span:last-child { text-decoration: line-through; text-decoration-color: rgba(107, 118, 132, 0.5); }
.price-row.price-save {
  color: var(--cini);
  font-weight: 700;
  border-top: 1px dashed var(--cizgi);
  margin-top: 6px;
  padding-top: 10px;
}
.price-note {
  font-size: 0.75rem;
  color: var(--metin-soluk);
  margin-top: 8px;
}

.booking-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gece);
  margin-top: 10px;
}
.booking-form .opt { font-weight: 400; color: var(--metin-soluk); }
.booking-form input,
.booking-form select,
.booking-form textarea {
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--metin);
  padding: 12px 14px;
  border: 1.5px solid var(--cizgi);
  border-radius: 10px;
  background: var(--beyaz);
  width: 100%;
}
.booking-form input:focus-visible,
.booking-form select:focus-visible,
.booking-form textarea:focus-visible {
  outline: none;
  border-color: var(--cini);
  box-shadow: 0 0 0 3px rgba(39, 93, 91, 0.15);
}
.booking-form textarea { resize: vertical; }
.booking-form .btn { margin-top: 18px; }
.honey { position: absolute; left: -9999px; }

.form-note { font-size: 0.9rem; margin-top: 10px; min-height: 1.2em; }
.form-note.ok { color: var(--cini); font-weight: 600; }
.form-note.err { color: #B4443C; font-weight: 600; }

.alt-contact {
  display: flex;
  gap: 10px;
  justify-content: center;
  font-size: 0.92rem;
  color: var(--metin-soluk);
  margin-top: 12px;
}
.alt-contact a { color: var(--cini); font-weight: 600; }

.ota-row {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--cizgi);
  text-align: center;
}
.ota-label {
  display: block;
  font-size: 0.85rem;
  color: var(--metin-soluk);
  margin-bottom: 10px;
}
.ota-links { display: flex; gap: 10px; justify-content: center; }
.ota-btn {
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--gece);
  padding: 9px 20px;
  border: 1.5px solid var(--cizgi);
  border-radius: 99px;
  transition: border-color 0.15s, color 0.15s;
}
.ota-btn:hover { border-color: var(--gunbatimi); color: var(--gunbatimi-koyu); }

/* ---------- konum ---------- */
.loc-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}
@media (max-width: 860px) { .loc-grid { grid-template-columns: 1fr; } }
.loc-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--cizgi);
  min-height: 340px;
}
.loc-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }
.loc-side { display: flex; flex-direction: column; justify-content: center; gap: 26px; }
.btn-map {
  background: var(--cini);
  color: #fff;
  text-align: center;
}
.btn-map:hover { background: #1E4A48; }
.loc-list { list-style: none; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.loc-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 4px;
  border-bottom: 1px dashed var(--cizgi);
}
.loc-list strong { font-family: var(--f-display); font-weight: 640; color: var(--gece); }
.loc-list span { color: var(--gunbatimi-koyu); font-weight: 600; }

/* ---------- footer ---------- */
.footer {
  background: var(--gece);
  color: rgba(232, 236, 242, 0.85);
  padding: clamp(44px, 6vw, 70px) 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}
.wordmark-light { color: #fff; font-size: 1.5rem; }
.footer-tag { margin-top: 6px; font-size: 0.95rem; opacity: 0.75; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; text-align: right; }
.footer-contact a { text-decoration: none; font-weight: 500; }
.footer-contact a:hover { color: var(--gunbatimi); }
@media (max-width: 620px) {
  .footer-grid { flex-direction: column; }
  .footer-contact { text-align: left; }
}

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(13, 27, 44, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(92vw, 1300px);
  max-height: 84vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lb-close, .lb-nav {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 1.9rem;
  line-height: 1;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,0.22); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 18px; top: 50%; translate: 0 -50%; }
.lb-next { right: 18px; top: 50%; translate: 0 -50%; }
.lb-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  translate: -50% 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
@media (max-width: 620px) {
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .lb-nav { width: 44px; height: 44px; }
}
