/* Maris — deniz kenarı butik otel. Cormorant serif + Hanken body. Kum/taş bej + deniz-teal. */

:root {
  --sand: #f3efe7;
  --sand-2: #ece6da;
  --paper: #faf8f3;
  --stone: #e3dccd;
  --line: #d9d1c0;
  --line-soft: #e6dfd1;
  --ink: #2b2a26;
  --ink-2: #54524a;
  --ink-3: #837f73;
  --teal: #2f7d83;
  --teal-2: #246369;
  --teal-soft: #d7e6e4;
  --teal-tint: #eaf2f0;
  --sun: #d99a5b;
  --sun-soft: #f0d8b8;
  --gold: #b88a4a;
  --on-teal: #f7faf9;
  --card: #fbf9f4;
  --card-2: #f6f2e9;
  --shadow: 30px 50px -34px rgba(43, 42, 38, 0.32);
  --shadow-sm: 0 18px 40px -28px rgba(43, 42, 38, 0.4);
  --rad: 20px;
  --rad-lg: 28px;
  --serif: "Cormorant", Georgia, serif;
  --body: "Hanken", system-ui, sans-serif;
  --maxw: 1240px;
  --sea-1: #6fb0b1;
  --sea-2: #3d8a8d;
  --sea-3: #266b73;
  --sky-1: #f3e4cf;
  --sky-2: #e7c9a6;
  --sky-3: #cfa9bd;
}

[data-theme="dark"] {
  --sand: #15191b;
  --sand-2: #11161a;
  --paper: #181d20;
  --stone: #222a2e;
  --line: #2a3338;
  --line-soft: #232b30;
  --ink: #ecf1f0;
  --ink-2: #b6c0bf;
  --ink-3: #7e8b8a;
  --teal: #79c2c6;
  --teal-2: #5fb0b4;
  --teal-soft: #1f3a3c;
  --teal-tint: #18282a;
  --sun: #e0a868;
  --sun-soft: #3a3024;
  --gold: #d6ad6f;
  --on-teal: #0c1416;
  --card: #1b2125;
  --card-2: #20272b;
  --shadow: 36px 56px -34px rgba(0, 0, 0, 0.7);
  --shadow-sm: 0 20px 44px -28px rgba(0, 0, 0, 0.78);
  --sea-1: #2c5a60;
  --sea-2: #1d474d;
  --sea-3: #123338;
  --sky-1: #2a2a3a;
  --sky-2: #3d3550;
  --sky-3: #533e58;
}

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }
body {
  background: var(--sand);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.005em;
  transition: background-color .4s ease, color .4s ease;
}

::selection { background: var(--teal); color: var(--on-teal); }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.04; letter-spacing: -0.01em; }
.kicker {
  display: inline-block; font-family: var(--body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 0.8rem;
}
.sec-title { font-size: clamp(2rem, 4.6vw, 3.4rem); color: var(--ink); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.sec-note { color: var(--ink-2); max-width: 30ch; font-size: 1.02rem; }

section { padding: clamp(3.4rem, 8vw, 6.5rem) clamp(1.1rem, 5vw, 3rem); max-width: var(--maxw); margin: 0 auto; }

/* ---- Duyuru şeridi ---- */
.ann { background: var(--ink); color: var(--sand); overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.06); }
[data-theme="dark"] .ann { background: #0c1012; color: var(--ink-2); }
.ann-track { display: inline-flex; align-items: center; gap: 1.4rem; white-space: nowrap; padding: 0.5rem 0; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; animation: annscroll 38s linear infinite; }
.ann-track i { color: var(--gold); font-style: normal; opacity: .85; }
@keyframes annscroll { to { transform: translateX(-50%); } }

/* ---- NAV ---- */
.nav {
  position: sticky; top: 46px; z-index: 120;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.85rem clamp(1.1rem, 5vw, 3rem);
  background: color-mix(in srgb, var(--sand) 86%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background-color .3s, box-shadow .3s;
}
.nav.is-stuck { border-bottom-color: var(--line); box-shadow: 0 14px 40px -30px rgba(43,42,38,.5); }
.brand {
  font-family: var(--serif); font-size: 1.9rem; font-weight: 600; letter-spacing: 0.02em; color: var(--ink);
  position: absolute; left: 50%; transform: translateX(-50%); pointer-events: auto;
}
.brand:hover { color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 0.3rem; }
.nav-item { position: relative; }
.nav-item > a { display: inline-block; padding: 0.55rem 0.95rem; font-size: 0.9rem; font-weight: 500; color: var(--ink-2); border-radius: 999px; transition: color .2s, background-color .2s; }
.nav-item > a:hover, .nav-item.open > a { color: var(--ink); background: var(--card-2); }
.nav-right { display: flex; align-items: center; gap: 0.5rem; }
.nav-book {
  display: inline-flex; align-items: center; padding: 0.5rem 1.1rem; border-radius: 999px;
  background: var(--teal); color: var(--on-teal); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.01em;
  transition: background-color .2s, transform .2s, box-shadow .2s;
}
.nav-book:hover { background: var(--teal-2); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.icon-btn { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: var(--ink-2); transition: color .2s, background-color .2s; }
.icon-btn:hover { color: var(--ink); background: var(--card-2); }

/* Mega menü */
.mega { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px); min-width: 540px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .24s, transform .24s, visibility .24s; z-index: 130; }
.nav-item.open .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega-in { display: grid; grid-template-columns: 1fr auto; gap: 1.4rem; padding: 1.4rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--rad); box-shadow: var(--shadow); }
.mega-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
.mega-cols-4 { grid-template-columns: repeat(4, minmax(118px, 1fr)); gap: 1.2rem; }
.mega-col { display: flex; flex-direction: column; gap: 0.45rem; }
.mega-h { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 0.35rem; }
.mega-col a { font-size: 0.9rem; color: var(--ink-2); transition: color .15s, transform .15s; }
.mega-col a:hover { color: var(--teal); transform: translateX(2px); }
.mega-promo { display: flex; flex-direction: column; justify-content: flex-end; gap: 0.2rem; width: 200px; padding: 1rem; border-radius: 16px; overflow: hidden; position: relative; color: #fff; }
.mega-promo-art { position: absolute; inset: 0; z-index: 0; }
.mega-promo-tx { position: relative; z-index: 1; }
.mega-promo b { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; }
.mega-promo i { display: block; font-size: 0.8rem; font-style: normal; opacity: .92; }
.promo-rooms .mega-promo-art { background: linear-gradient(160deg, #3d8a8d, #1c4d52 70%); }
.promo-spa .mega-promo-art { background: linear-gradient(160deg, #6f9a8c, #2f5d56 75%); }
.promo-konum .mega-promo-art { background: linear-gradient(160deg, #d99a5b, #9a5f37 80%); }
.promo-iletisim .mega-promo-art { background: linear-gradient(160deg, #5a7691, #2f4356 78%); }
.mega-promo::after { content: ""; position: absolute; right: -20%; bottom: -30%; width: 120px; height: 120px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.28), transparent 70%); z-index: 0; }
.mega-promo:hover .mega-promo-art { filter: brightness(1.08); }

/* Hamburger + drawer */
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; justify-content: center; align-items: center; }
.nav-toggle span { width: 21px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .3s, opacity .3s; }
body.drawer-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.drawer-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.drawer-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-drawer { position: fixed; inset: calc(46px + 64px) 0 auto 0; z-index: 115; flex-direction: column; gap: 0.2rem; padding: 1rem clamp(1.1rem, 5vw, 2rem) 1.6rem; background: var(--card); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
.nav-drawer a { padding: 0.85rem 0.4rem; font-family: var(--serif); font-size: 1.5rem; color: var(--ink); border-bottom: 1px solid var(--line-soft); }
.nav-drawer a:last-child { border-bottom: 0; }
.nav-drawer .drawer-book { margin-top: 0.6rem; font-family: var(--body); font-size: 1rem; font-weight: 600; color: var(--on-teal); background: var(--teal); border-radius: 999px; padding: 0.85rem 1.2rem; text-align: center; }

/* Arama paneli */
.search-overlay { position: fixed; inset: 0; z-index: 140; background: rgba(20,18,14,.4); opacity: 0; transition: opacity .3s; }
.search-overlay.is-open { opacity: 1; }
.search-panel { position: fixed; top: 0; left: 0; right: 0; z-index: 141; transform: translateY(-100%); transition: transform .36s cubic-bezier(.22,1,.36,1); background: var(--card); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
.search-panel.is-open { transform: translateY(0); }
.search-inner { max-width: 720px; margin: 0 auto; padding: 2.2rem clamp(1.1rem, 5vw, 2rem); }
.search-field { display: flex; align-items: center; gap: 0.7rem; padding: 0.9rem 1.1rem; border: 1px solid var(--line); border-radius: 14px; color: var(--ink-3); background: var(--paper); }
.search-field:focus-within { border-color: var(--teal); }
.search-field input { flex: 1; border: 0; background: none; color: var(--ink); font-size: 1.05rem; outline: none; }
.search-x { font-size: 1.6rem; line-height: 1; color: var(--ink-3); width: 30px; }
.search-x:hover { color: var(--ink); }
.search-suggest { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-top: 1rem; font-size: 0.82rem; color: var(--ink-3); }
.search-suggest button { padding: 0.3rem 0.8rem; border: 1px solid var(--line); border-radius: 999px; font-size: 0.82rem; color: var(--ink-2); transition: border-color .2s, color .2s; }
.search-suggest button:hover { border-color: var(--teal); color: var(--teal); }
.search-results { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.sr-item { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.85rem 0.4rem; border-top: 1px solid var(--line-soft); cursor: pointer; transition: padding-left .2s, color .2s; }
.sr-item:hover { padding-left: 0.9rem; }
.sr-name { font-family: var(--serif); font-size: 1.2rem; color: var(--ink); }
.sr-price { font-size: 0.9rem; color: var(--teal); font-weight: 600; }
.sr-empty { padding: 1rem 0.4rem; color: var(--ink-3); }

/* ---- HERO ---- */
.hero { position: relative; min-height: clamp(470px, 66vh, 640px); max-width: none; padding: 0; display: flex; align-items: center; overflow: hidden; }
.hero-scene { position: absolute; inset: 0; z-index: 0; }
.hero-scene .sky { position: absolute; inset: 0; background: linear-gradient(180deg, var(--sky-3) 0%, var(--sky-2) 32%, var(--sky-1) 58%); }
.hero-scene .sun { position: absolute; left: 64%; top: 30%; width: clamp(90px, 14vw, 180px); height: clamp(90px, 14vw, 180px); border-radius: 50%; background: radial-gradient(circle at 50% 50%, #fff5e4, #f4cf94 55%, rgba(244,207,148,0) 72%); filter: blur(.4px); animation: sunrise 12s ease-in-out infinite alternate; }
@keyframes sunrise { from { transform: translateY(8px); } to { transform: translateY(-6px); } }
.hero-scene .sea { position: absolute; left: 0; right: 0; bottom: 0; height: 46%; background: linear-gradient(180deg, var(--sea-1) 0%, var(--sea-2) 45%, var(--sea-3) 100%); }
.hero-scene .shimmer { position: absolute; left: 50%; bottom: 0; width: 32%; height: 44%; transform: translateX(-50%); background: linear-gradient(180deg, rgba(255,245,225,.55), rgba(255,245,225,0) 70%); mix-blend-mode: soft-light; opacity: .8; }
.hero-scene .hill { position: absolute; bottom: 44%; width: 46%; height: 16%; background: linear-gradient(180deg, color-mix(in srgb, var(--sea-3) 60%, #1c3c41), var(--sea-3)); }
.hero-scene .hill-l { left: -6%; border-radius: 0 100% 0 0 / 0 100% 0 0; opacity: .9; }
.hero-scene .hill-r { right: -6%; height: 22%; bottom: 44%; border-radius: 100% 0 0 0 / 100% 0 0 0; opacity: .82; }
.hero-scene .boat { position: absolute; left: 24%; bottom: 30%; width: 26px; height: 12px; background: var(--ink); opacity: .42; clip-path: polygon(8% 40%, 92% 40%, 78% 100%, 22% 100%); animation: bob 7s ease-in-out infinite; }
.hero-scene .boat::after { content: ""; position: absolute; left: 47%; bottom: 100%; width: 1.5px; height: 16px; background: var(--ink); opacity: .5; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-3px) rotate(1.5deg); } }
.hero-scene .bird { position: absolute; width: 16px; height: 6px; opacity: .42; }
.hero-scene .bird::before, .hero-scene .bird::after { content: ""; position: absolute; top: 0; width: 8px; height: 6px; border-top: 1.6px solid var(--ink); border-radius: 50%; }
.hero-scene .bird::before { left: 0; transform: rotate(18deg); }
.hero-scene .bird::after { right: 0; transform: rotate(-18deg); }
.hero-scene .b1 { left: 40%; top: 18%; animation: drift 22s linear infinite; }
.hero-scene .b2 { left: 52%; top: 24%; transform: scale(.8); animation: drift 26s linear infinite 2s; }
.hero-scene .b3 { left: 46%; top: 14%; transform: scale(.65); animation: drift 30s linear infinite 4s; }
@keyframes drift { from { transform: translateX(-10vw); } to { transform: translateX(60vw); } }
.hero-scene .grain { position: absolute; inset: 0; opacity: .035; mix-blend-mode: multiply; background-image: radial-gradient(currentColor 0.5px, transparent 0.6px); background-size: 4px 4px; color: var(--ink); }

.hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: clamp(1.5rem, 4vw, 3rem) clamp(1.1rem, 5vw, 3rem) clamp(3rem, 6vw, 4.5rem); display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: end; }
.hero-copy { color: #fff; text-shadow: 0 2px 24px rgba(20,30,30,.35); }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.7rem; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,.92); margin-bottom: 1.2rem; }
.eb-line { width: 30px; height: 1px; background: rgba(255,255,255,.7); }
.hero-title { font-size: clamp(2.8rem, 8vw, 6rem); color: #fff; margin-bottom: 1.2rem; }
.hero-title .accentline { font-style: italic; color: var(--sun-soft); }
[data-theme="dark"] .hero-title .accentline { color: #f0c98f; }
.hero-lede { font-size: clamp(1.05rem, 2vw, 1.32rem); line-height: 1.55; max-width: 36ch; color: rgba(255,255,255,.94); margin-bottom: 1.6rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 0.6rem 1rem; list-style: none; padding: 0; }
.hero-trust li { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.84rem; color: rgba(255,255,255,.92); }
.hero-trust li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--sun-soft); }

/* İmza: tarih aracı */
.bookbar { background: color-mix(in srgb, var(--card) 94%, transparent); backdrop-filter: blur(14px) saturate(1.3); -webkit-backdrop-filter: blur(14px) saturate(1.3); border: 1px solid color-mix(in srgb, var(--line) 70%, transparent); border-radius: var(--rad-lg); padding: clamp(1.2rem, 2.5vw, 1.6rem); box-shadow: var(--shadow); }
.bookbar-h { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); margin-bottom: 1rem; }
.bb-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.bb-f { display: flex; flex-direction: column; gap: 0.3rem; }
.bb-lbl { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.bb-f input, .bb-f select { width: 100%; padding: 0.62rem 0.7rem; border: 1px solid var(--line); border-radius: 11px; background: var(--paper); color: var(--ink); font-size: 0.92rem; outline: none; transition: border-color .2s; }
.bb-f input:focus, .bb-f select:focus { border-color: var(--teal); }
.bb-f-sel select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23837f73' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.7rem center; padding-right: 1.8rem; }
.bb-go { width: 100%; margin-top: 0.9rem; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.85rem 1.2rem; border-radius: 13px; background: var(--teal); color: var(--on-teal); font-size: 0.95rem; font-weight: 600; transition: background-color .2s, transform .2s; }
.bb-go:hover { background: var(--teal-2); transform: translateY(-1px); }
.bb-go svg { transition: transform .2s; }
.bb-go:hover svg { transform: translateX(3px); }
.bb-note { margin-top: 0.7rem; font-size: 0.78rem; color: var(--ink-3); text-align: center; }
.bb-out { margin-top: 0.9rem; padding-top: 0.9rem; border-top: 1px solid var(--line-soft); display: grid; gap: 0.6rem; animation: fadeUp .4s ease both; }
.bb-nights { font-size: 0.84rem; color: var(--ink-2); }
.bb-price { display: flex; align-items: baseline; gap: 0.4rem; }
.bb-from { font-size: 0.78rem; color: var(--ink-3); }
.bb-price strong { font-family: var(--serif); font-size: 1.8rem; font-weight: 600; color: var(--ink); }
.bb-per { font-size: 0.82rem; color: var(--ink-3); }
.bb-reserve { display: inline-flex; align-items: center; justify-content: center; padding: 0.7rem 1rem; border-radius: 12px; background: var(--ink); color: var(--sand); font-size: 0.88rem; font-weight: 600; transition: transform .2s, opacity .2s; }
.bb-reserve:hover { transform: translateY(-1px); opacity: .92; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.hero-scroll { position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%); z-index: 3; display: inline-flex; flex-direction: column; align-items: center; gap: 0.3rem; color: rgba(255,255,255,.92); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; }
.hero-scroll svg { animation: bobdown 1.8s ease-in-out infinite; }
@keyframes bobdown { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ---- ODALAR ---- */
.shop { display: grid; grid-template-columns: 248px 1fr; gap: clamp(1.4rem, 3vw, 2.4rem); align-items: start; }
.cats { position: sticky; top: calc(46px + 70px); display: flex; flex-direction: column; gap: 0.9rem; }
.cats-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
.cats-list { display: flex; flex-direction: column; gap: 0.3rem; }
.cat { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; padding: 0.6rem 0.9rem; border-radius: 11px; font-size: 0.92rem; color: var(--ink-2); text-align: left; transition: background-color .2s, color .2s; }
.cat .c { font-size: 0.72rem; color: var(--ink-3); background: var(--card-2); padding: 1px 8px; border-radius: 999px; transition: background-color .2s, color .2s; }
.cat:hover { background: var(--card-2); color: var(--ink); }
.cat.is-on { background: var(--teal); color: var(--on-teal); }
.cat.is-on .c { background: rgba(255,255,255,.2); color: var(--on-teal); }
.cats-help { margin-top: 0.4rem; padding: 1rem; border: 1px dashed var(--line); border-radius: 14px; }
.cats-help p { font-size: 0.86rem; color: var(--ink-2); margin-bottom: 0.4rem; }
.cats-help a { font-size: 0.86rem; font-weight: 600; color: var(--teal); }
.cats-help a:hover { color: var(--teal-2); }

.facets { display: flex; flex-direction: column; gap: 1rem; padding: 1rem; border: 1px solid var(--line); border-radius: 14px; background: var(--card); }
.facet-h { display: flex; align-items: center; gap: 0.4rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 0.55rem; }
.facet-h em { font-style: normal; font-weight: 600; letter-spacing: 0; text-transform: none; color: var(--teal); margin-left: auto; }
.facet-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.fchip { padding: 0.35rem 0.7rem; border: 1px solid var(--line); border-radius: 999px; font-size: 0.78rem; color: var(--ink-2); transition: all .18s; }
.fchip:hover { border-color: var(--teal); color: var(--teal); }
.fchip.is-on { background: var(--teal); border-color: var(--teal); color: var(--on-teal); }
.fprice { width: 100%; accent-color: var(--teal); }

.sort { display: flex; align-items: center; gap: 0.55rem; }
.sort label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.sort select { appearance: none; -webkit-appearance: none; padding: 0.5rem 2rem 0.5rem 0.9rem; border: 1px solid var(--line); border-radius: 999px; background: var(--card) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23837f73' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 0.8rem center; color: var(--ink); font-size: 0.85rem; cursor: pointer; outline: none; }
.sort select:focus { border-color: var(--teal); }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: clamp(1.1rem, 2.2vw, 1.7rem); }
.grid-empty { grid-column: 1 / -1; padding: 3rem 1rem; text-align: center; color: var(--ink-3); font-family: var(--serif); font-size: 1.4rem; }

.room { background: var(--card); border: 1px solid var(--line); border-radius: var(--rad); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s, border-color .3s; opacity: 0; animation: roomIn .6s cubic-bezier(.22,1,.36,1) forwards; animation-delay: calc(var(--t) * 0.06s); }
@keyframes roomIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.room:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--teal) 40%, var(--line)); }
.room.hide { display: none; }
.room.flash { animation: flash 1.2s ease; }
@keyframes flash { 0%,100% { box-shadow: var(--shadow-sm); } 30% { box-shadow: 0 0 0 3px var(--teal), var(--shadow); } }

.thumb { position: relative; aspect-ratio: 4 / 3; cursor: pointer; overflow: hidden; }
.room-scene { position: absolute; inset: 0; }
.rs-sky { position: absolute; inset: 0; background: linear-gradient(180deg, var(--sky-2) 0%, var(--sky-1) 55%); }
.rs-sea { position: absolute; left: 0; right: 0; bottom: 0; height: 42%; background: linear-gradient(180deg, var(--sea-1), var(--sea-3)); }
.rs-sun { position: absolute; left: 66%; top: 24%; width: 60px; height: 60px; border-radius: 50%; background: radial-gradient(circle, #fff4e0, rgba(244,207,148,0) 70%); }
.rs-shim { position: absolute; left: 50%; bottom: 0; width: 30%; height: 40%; transform: translateX(-50%); background: linear-gradient(180deg, rgba(255,245,225,.5), transparent 70%); mix-blend-mode: soft-light; }
.rs-hill { position: absolute; right: -8%; bottom: 40%; width: 50%; height: 16%; background: var(--sea-3); border-radius: 100% 0 0 0; opacity: .82; }
.rs-rail { position: absolute; left: 0; right: 0; bottom: 0; height: 18%; background: linear-gradient(180deg, color-mix(in srgb, var(--ink) 22%, transparent), transparent); }
.rs-rail::before, .rs-rail::after { content: ""; position: absolute; bottom: 12%; height: 60%; width: 2px; background: color-mix(in srgb, var(--ink) 50%, transparent); }
.rs-rail::before { left: 24%; } .rs-rail::after { right: 24%; }
.rs-tree { position: absolute; bottom: 36%; width: 16px; height: 44px; }
.rs-tree::before { content: ""; position: absolute; bottom: 0; left: 50%; width: 2px; height: 70%; background: color-mix(in srgb, var(--ink) 55%, transparent); transform: translateX(-50%); }
.rs-tree::after { content: ""; position: absolute; top: 0; left: 50%; width: 16px; height: 16px; background: color-mix(in srgb, var(--sea-3) 80%, #1c3c41); border-radius: 50%; transform: translateX(-50%); }
.rs-tree.t1 { left: 12%; } .rs-tree.t2 { left: 26%; bottom: 38%; transform: scale(.8); }
.rs-plant { position: absolute; left: 8%; bottom: 16%; width: 22px; height: 30px; background: radial-gradient(circle at 50% 100%, color-mix(in srgb, var(--sea-3) 70%, #234), transparent 72%); border-radius: 50% 50% 0 0; }
.rs-tub { position: absolute; left: 12%; bottom: 18%; width: 34px; height: 14px; border: 2px solid color-mix(in srgb, var(--ink) 45%, transparent); border-radius: 0 0 14px 14px; border-top: 0; background: color-mix(in srgb, var(--sea-1) 50%, #fff); }

.tag-pop, .tag-signature { position: absolute; top: 0.8rem; left: 0.8rem; z-index: 2; padding: 0.3rem 0.7rem; border-radius: 999px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; background: var(--ink); color: var(--sand); }
.tag-signature { background: var(--gold); color: #221805; }
.r-tags { position: absolute; bottom: 0.7rem; left: 0.7rem; z-index: 2; display: flex; gap: 0.4rem; }
.r-meta-pill { padding: 0.22rem 0.6rem; border-radius: 999px; font-size: 0.7rem; font-weight: 600; color: var(--ink); background: color-mix(in srgb, var(--paper) 88%, transparent); backdrop-filter: blur(4px); }
.qv-hint { position: absolute; bottom: 0.7rem; right: 0.7rem; z-index: 2; padding: 0.32rem 0.8rem; border-radius: 999px; font-size: 0.72rem; font-weight: 600; color: var(--on-teal); background: var(--teal); opacity: 0; transform: translateY(6px); transition: opacity .25s, transform .25s; }
.thumb:hover .qv-hint { opacity: 1; transform: translateY(0); }

.r-rate { padding: 0.9rem 1.1rem 0; display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--ink-3); }
.r-rate .stars { color: var(--sun); letter-spacing: 0.06em; }
.r-row { display: flex; align-items: baseline; justify-content: space-between; gap: 0.6rem; padding: 0.35rem 1.1rem 0; }
.r-name { font-size: 1.45rem; color: var(--ink); }
.r-view { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; color: var(--teal); background: var(--teal-tint); padding: 0.2rem 0.6rem; border-radius: 999px; white-space: nowrap; }
[data-theme="dark"] .r-view { background: var(--teal-soft); }
.r-bed { padding: 0.3rem 1.1rem 0; font-size: 0.85rem; color: var(--ink-2); }
.r-foot { margin-top: auto; padding: 0.9rem 1.1rem 1.1rem; display: flex; align-items: flex-end; justify-content: space-between; gap: 0.8rem; }
.r-price { display: flex; flex-direction: column; line-height: 1.1; }
.r-from { font-size: 0.68rem; color: var(--ink-3); }
.r-price strong { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--ink); }
.r-per { font-size: 0.72rem; color: var(--ink-3); }
.r-cta { padding: 0.62rem 1rem; border-radius: 11px; background: var(--ink); color: var(--sand); font-size: 0.82rem; font-weight: 600; white-space: nowrap; transition: background-color .2s, transform .2s; }
.r-cta:hover { background: var(--teal); color: var(--on-teal); transform: translateY(-1px); }

/* ---- Marquee ---- */
.marquee { max-width: none; padding: 0; overflow: hidden; border-block: 1px solid var(--line); background: var(--card-2); }
.marquee-row { display: inline-flex; align-items: center; gap: 1.4rem; white-space: nowrap; padding: 1.1rem 0; font-family: var(--serif); font-size: clamp(1.4rem, 3.4vw, 2.4rem); font-style: italic; color: var(--ink); animation: marq 26s linear infinite; }
.marquee-row b { color: var(--teal); font-style: normal; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---- OLANAKLAR ---- */
.amen-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: clamp(1rem, 2vw, 1.4rem); }
.amc { padding: 1.6rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--rad); transition: transform .3s, box-shadow .3s, border-color .3s; }
.amc:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: color-mix(in srgb, var(--teal) 35%, var(--line)); }
.amc-ic { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; color: var(--teal); background: var(--teal-tint); margin-bottom: 1rem; }
[data-theme="dark"] .amc-ic { background: var(--teal-soft); }
.amc-t { font-size: 1.4rem; color: var(--ink); margin-bottom: 0.5rem; }
.amc p { font-size: 0.92rem; color: var(--ink-2); }

/* ---- GALERİ ---- */
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; gap: clamp(0.7rem, 1.6vw, 1.1rem); }
.gal { position: relative; margin: 0; border-radius: 16px; overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); }
.gal-art { position: absolute; inset: 0; transition: transform .5s cubic-bezier(.22,1,.36,1); }
.gal:hover .gal-art { transform: scale(1.06); }
.gal figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; display: flex; align-items: baseline; justify-content: space-between; padding: 0.9rem 1rem; color: #fff; background: linear-gradient(180deg, transparent, rgba(15,30,30,.6)); }
.gal-no { font-family: var(--serif); font-size: 0.95rem; opacity: .85; }
.gal-cap { font-size: 0.86rem; font-weight: 600; }
.gal-pool { grid-column: span 2; grid-row: span 2; }
.gal-pool .gal-art { background: linear-gradient(165deg, #cfe6e0 0%, #7fc0bd 40%, #2c7e80 100%); }
.gal-pool .gal-art::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 50%; background: linear-gradient(180deg, #6fb6b3, #1f6066); }
.gal-room .gal-art { background: linear-gradient(160deg, #f1e3cf, #d9b98e); }
.gal-room .gal-art::after { content: ""; position: absolute; right: 0; bottom: 0; width: 60%; height: 60%; background: linear-gradient(160deg, #8fc4c2, #2c7176); border-radius: 80% 0 0 0; }
.gal-beach .gal-art { background: linear-gradient(180deg, #e8d4b2 0%, #d9be94 40%, #6db1ae 70%, #2c7c7e 100%); }
.gal-dine .gal-art { background: linear-gradient(160deg, #d99a5b, #9a5a35); }
.gal-dine .gal-art::after { content: ""; position: absolute; right: -10%; top: -10%; width: 70%; height: 70%; background: radial-gradient(circle, rgba(255,240,210,.5), transparent 70%); }
.gal-spa .gal-art { background: linear-gradient(160deg, #cde0d8, #6f9a8c); }
.gal-roof { grid-column: span 2; }
.gal-roof .gal-art { background: linear-gradient(110deg, #533e58 0%, #b06a82 40%, #e0a060 75%, #f0cf94 100%); }

/* ---- KONUM ---- */
.loc { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 4vw, 3.4rem); align-items: center; }
.loc-map { position: relative; aspect-ratio: 5 / 4; border-radius: var(--rad-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.lm-sea { position: absolute; inset: 0; background: linear-gradient(160deg, var(--sea-1), var(--sea-3)); }
.lm-sea::after { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(115deg, transparent 0 22px, rgba(255,255,255,.05) 22px 23px); }
.lm-land { position: absolute; right: -6%; top: -6%; width: 72%; height: 78%; background: linear-gradient(160deg, var(--card-2), var(--stone)); border-radius: 0 0 0 60% / 0 0 0 50%; box-shadow: -10px 14px 30px -18px rgba(0,0,0,.4); }
.lm-route { position: absolute; left: 32%; top: 64%; width: 40%; height: 26%; border-top: 2px dashed var(--gold); border-right: 2px dashed var(--gold); border-radius: 0 60% 0 0; opacity: .8; }
.lm-pin { position: absolute; display: inline-flex; align-items: center; gap: 0.4rem; z-index: 2; }
.lm-pin i { width: 12px; height: 12px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); display: inline-block; }
.lm-pin b { font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.55rem; border-radius: 999px; background: var(--card); color: var(--ink); box-shadow: var(--shadow-sm); white-space: nowrap; }
.lm-hotel { left: 30%; top: 60%; }
.lm-hotel i { background: var(--teal); box-shadow: 0 0 0 5px color-mix(in srgb, var(--teal) 30%, transparent); animation: pulse 2.4s ease-out infinite; }
.lm-hotel b { background: var(--teal); color: var(--on-teal); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--teal) 45%, transparent); } 100% { box-shadow: 0 0 0 14px transparent; } }
.lm-old { right: 16%; top: 18%; } .lm-old i { background: var(--sun); }
.lm-marina { right: 8%; top: 46%; } .lm-marina i { background: var(--gold); }
.lm-compass { position: absolute; left: 1rem; bottom: 1rem; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.45); color: rgba(255,255,255,.85); font-size: 0.7rem; font-weight: 700; }
.loc-text { font-size: 1.06rem; color: var(--ink-2); margin: 1rem 0 1.4rem; max-width: 44ch; }
.loc-facts { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 1.6rem; }
.loc-facts li { display: flex; align-items: center; gap: 0.8rem; }
.lf-ic { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; flex: none; color: var(--teal); background: var(--teal-tint); }
[data-theme="dark"] .lf-ic, [data-theme="dark"] .rm-ic { background: var(--teal-soft); }
.loc-facts b { display: block; font-size: 0.95rem; color: var(--ink); }
.loc-facts i { font-style: normal; font-size: 0.82rem; color: var(--ink-3); }
.loc-link { display: inline-flex; font-weight: 600; color: var(--teal); transition: color .2s, transform .2s; }
.loc-link:hover { color: var(--teal-2); transform: translateX(3px); }

/* ---- REZERVASYON ---- */
.resv { background: var(--card-2); max-width: none; }
.resv-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(1.6rem, 4vw, 3.4rem); align-items: start; }
.resv-copy p { font-size: 1.05rem; color: var(--ink-2); margin-bottom: 1.4rem; max-width: 44ch; }
.resv-meta { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.4rem; }
.resv-meta li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.95rem; color: var(--ink-2); }
.rm-ic { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 8px; flex: none; color: var(--teal); background: var(--teal-tint); }
.resv-resp, .contact-resp { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.84rem; color: var(--ink-3); }
.cr-dot { width: 8px; height: 8px; border-radius: 50%; background: #5aa86a; box-shadow: 0 0 0 0 rgba(90,168,106,.5); animation: dot 2s ease-out infinite; }
@keyframes dot { 0% { box-shadow: 0 0 0 0 rgba(90,168,106,.5); } 100% { box-shadow: 0 0 0 8px transparent; } }

.resv-form { background: var(--card); border: 1px solid var(--line); border-radius: var(--rad-lg); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow); }
.rf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin-bottom: 0.9rem; }
.rf-field { display: flex; flex-direction: column; gap: 0.35rem; }
.rf-field > span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.rf-field input, .rf-field textarea, .rf-field select { width: 100%; padding: 0.72rem 0.85rem; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); color: var(--ink); font-size: 0.95rem; outline: none; transition: border-color .2s; }
.rf-field input:focus, .rf-field textarea:focus, .rf-field select:focus { border-color: var(--teal); }
.rf-sel select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23837f73' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.8rem center; padding-right: 1.9rem; }
.rf-area textarea { resize: vertical; min-height: 60px; }
.rf-area { margin-bottom: 0.9rem; }
.rf-summary { margin: 0 0 1rem; padding: 0.9rem 1rem; border-radius: 13px; background: var(--teal-tint); border: 1px solid color-mix(in srgb, var(--teal) 22%, var(--line)); animation: fadeUp .35s ease both; }
[data-theme="dark"] .rf-summary { background: var(--teal-soft); }
.rfs-line { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; font-size: 0.86rem; color: var(--ink-2); margin-bottom: 0.4rem; }
.rfs-total { display: flex; align-items: baseline; justify-content: space-between; gap: 0.6rem; padding-top: 0.5rem; border-top: 1px dashed color-mix(in srgb, var(--teal) 30%, var(--line)); }
.rfs-total span { font-size: 0.82rem; color: var(--ink-2); }
.rfs-total strong { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--teal-2); }
[data-theme="dark"] .rfs-total strong { color: var(--teal); }
.rf-submit { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.95rem 1.2rem; border-radius: 13px; background: var(--teal); color: var(--on-teal); font-size: 1rem; font-weight: 600; transition: background-color .2s, transform .2s; }
.rf-submit:hover { background: var(--teal-2); transform: translateY(-1px); }
.rf-submit svg { transition: transform .2s; } .rf-submit:hover svg { transform: translateX(3px); }
.rf-trap, .cf-trap { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.rf-ok, .cf-ok { display: flex; align-items: center; gap: 0.6rem; margin-top: 0.9rem; padding: 0.85rem 1rem; border-radius: 12px; background: var(--teal-tint); color: var(--teal-2); font-size: 0.88rem; }
[data-theme="dark"] .rf-ok, [data-theme="dark"] .cf-ok { background: var(--teal-soft); color: var(--teal); }
.rf-ok-tick, .cf-ok-tick { display: grid; place-items: center; width: 28px; height: 28px; flex: none; border-radius: 50%; color: #fff; background: #5aa86a; }

/* ---- YORUMLAR ---- */
.reviews { text-align: center; }
.rv-head { margin-bottom: 2.4rem; }
.rv-desc { color: var(--ink-2); margin-top: 0.6rem; }
.rv-wrap { position: relative; }
.rv-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.1rem; text-align: left; }
.rv-grid.is-collapsed { max-height: 430px; overflow: hidden; }
.rv-card { padding: 1.4rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--rad); box-shadow: var(--shadow-sm); }
.rv-top { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.7rem; }
.rv-av { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; flex: none; font-size: 0.82rem; font-weight: 700; color: #fff; background: var(--av); }
.rv-id b { display: block; font-size: 0.92rem; color: var(--ink); }
.rv-id span { font-size: 0.76rem; color: var(--ink-3); }
.rv-stars { color: var(--sun); letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.rv-text { font-size: 0.94rem; color: var(--ink-2); line-height: 1.6; }
.rv-fade { position: absolute; left: 0; right: 0; bottom: 52px; height: 130px; pointer-events: none; background: linear-gradient(180deg, transparent, var(--sand)); transition: opacity .3s; }
.rv-wrap.open .rv-fade { opacity: 0; }
.rv-more { display: inline-flex; align-items: center; margin: 1.4rem auto 0; padding: 0.7rem 1.6rem; border: 1px solid var(--line); border-radius: 999px; font-size: 0.88rem; font-weight: 600; color: var(--ink); background: var(--card); transition: border-color .2s, color .2s, background-color .2s; }
.rv-more:hover { border-color: var(--teal); color: var(--teal); }
.rv-wrap.open .rv-more { display: none; }

/* ---- İLETİŞİM ---- */
.contact-inner { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(1.6rem, 4vw, 3.4rem); align-items: start; }
.contact-copy p { font-size: 1.05rem; color: var(--ink-2); margin-bottom: 1.4rem; max-width: 42ch; }
.contact-meta { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 1.4rem; }
.contact-meta li { display: flex; align-items: center; gap: 0.8rem; }
.cm-ic { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; flex: none; color: var(--teal); background: var(--teal-tint); }
[data-theme="dark"] .cm-ic { background: var(--teal-soft); }
.cm-lbl { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.contact-meta a, .contact-meta span:not(.cm-lbl) { font-size: 0.95rem; color: var(--ink); }
.contact-meta a:hover { color: var(--teal); }

.contact-form { background: var(--card); border: 1px solid var(--line); border-radius: var(--rad-lg); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow); }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin-bottom: 0.9rem; }
.ff { position: relative; }
.ff input, .ff textarea { width: 100%; padding: 1rem 0.9rem 0.5rem; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); color: var(--ink); font-size: 0.95rem; outline: none; transition: border-color .2s; }
.ff textarea { resize: vertical; min-height: 96px; }
.ff label { position: absolute; left: 0.95rem; top: 0.85rem; font-size: 0.95rem; color: var(--ink-3); pointer-events: none; transition: transform .18s, font-size .18s, color .18s; }
.ff input:focus, .ff textarea:focus { border-color: var(--teal); }
.ff input:focus + label, .ff input:not(:placeholder-shown) + label, .ff textarea:focus + label, .ff textarea:not(:placeholder-shown) + label { transform: translateY(-0.65rem); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal); }
.ff-area { position: relative; margin-bottom: 0.9rem; }
.ff-count { position: absolute; right: 0.8rem; bottom: 0.55rem; font-size: 0.72rem; color: var(--ink-3); }
.cf-topics { margin-bottom: 0.9rem; }
.cf-topics-lbl { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 0.5rem; }
.cf-pills { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.cf-pill { padding: 0.42rem 0.9rem; border: 1px solid var(--line); border-radius: 999px; font-size: 0.82rem; color: var(--ink-2); transition: all .18s; }
.cf-pill:hover { border-color: var(--teal); color: var(--teal); }
.cf-pill.is-on { background: var(--teal); border-color: var(--teal); color: var(--on-teal); }
.cf-submit { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.95rem 1.2rem; border-radius: 13px; background: var(--ink); color: var(--sand); font-size: 1rem; font-weight: 600; transition: background-color .2s, transform .2s; }
.cf-submit:hover { background: var(--teal); color: var(--on-teal); transform: translateY(-1px); }
.cf-submit svg { transition: transform .2s; } .cf-submit:hover svg { transform: translateX(3px); }

/* ---- GÜVEN ŞERİDİ ---- */
.trust { max-width: none; background: var(--ink); padding: clamp(2rem, 4vw, 3rem) clamp(1.1rem, 5vw, 3rem); }
[data-theme="dark"] .trust { background: #0c1012; }
.trust-row { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 2rem); }
.trust-it { display: flex; align-items: center; gap: 0.8rem; }
.trust-ic { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; flex: none; color: var(--sun-soft); background: rgba(255,255,255,.06); }
[data-theme="dark"] .trust-ic { color: var(--teal); }
.trust-it b { display: block; font-size: 0.95rem; color: var(--sand); }
.trust-it i { font-style: normal; font-size: 0.8rem; color: rgba(255,255,255,.6); }
[data-theme="dark"] .trust-it i { color: var(--ink-3); }

/* ---- FOOTER ---- */
.footer { max-width: none; background: var(--card-2); padding: clamp(2.6rem, 5vw, 4rem) clamp(1.1rem, 5vw, 3rem) 2rem; border-top: 1px solid var(--line); }
.news { max-width: var(--maxw); margin: 0 auto 2.6rem; text-align: center; padding-bottom: 2.6rem; border-bottom: 1px solid var(--line); }
.news-title { font-size: clamp(1.6rem, 4vw, 2.6rem); color: var(--ink); margin: 0.4rem auto 1.2rem; max-width: 22ch; }
.news-form { display: flex; gap: 0.5rem; max-width: 440px; margin: 0 auto; }
.news-form input { flex: 1; padding: 0.85rem 1rem; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); color: var(--ink); font-size: 0.95rem; outline: none; }
.news-form input:focus { border-color: var(--teal); }
.news-form button { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.85rem 1.4rem; border-radius: 12px; background: var(--teal); color: var(--on-teal); font-size: 0.92rem; font-weight: 600; transition: background-color .2s, transform .2s; }
.news-form button:hover { background: var(--teal-2); transform: translateY(-1px); }
.news-ok { margin-top: 0.9rem; font-size: 0.88rem; color: var(--teal); }

.foot-cols { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(1.4rem, 3vw, 2.6rem); }
.foot-brand .brand { display: inline-block; font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--ink); margin-bottom: 0.6rem; }
.foot-brand p { font-size: 0.9rem; color: var(--ink-2); max-width: 32ch; margin-bottom: 1rem; }
.foot-social { display: flex; gap: 0.5rem; }
.foot-social a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); color: var(--ink-2); transition: all .2s; }
.foot-social a:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.foot-col { display: flex; flex-direction: column; gap: 0.5rem; }
.foot-col span { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 0.3rem; }
.foot-col a { font-size: 0.9rem; color: var(--ink-2); transition: color .15s, transform .15s; }
.foot-col a:hover { color: var(--teal); transform: translateX(2px); }
.foot-base { max-width: var(--maxw); margin: 2.4rem auto 0; padding-top: 1.4rem; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.82rem; color: var(--ink-3); }
.pay { display: flex; gap: 0.4rem; }
.pay span { padding: 0.2rem 0.6rem; border: 1px solid var(--line); border-radius: 6px; font-size: 0.72rem; }

/* ---- QUICK-VIEW (oda detay) ---- */
.qv-overlay { position: fixed; inset: 0; z-index: 180; background: rgba(20,18,14,.55); opacity: 0; transition: opacity .34s; }
.qv-overlay.is-open { opacity: 1; }
.qv { position: fixed; top: 50%; left: 50%; z-index: 181; width: min(920px, 94vw); max-height: 92vh; transform: translate(-50%, -50%) scale(.96); opacity: 0; pointer-events: none; display: grid; grid-template-columns: 0.9fr 1.1fr; background: var(--card); border: 1px solid var(--line); border-radius: var(--rad-lg); overflow: hidden; box-shadow: var(--shadow); transition: opacity .34s, transform .34s cubic-bezier(.22,1,.36,1); }
.qv.is-open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.qv-x { position: absolute; top: 0.8rem; right: 0.9rem; z-index: 3; width: 38px; height: 38px; border-radius: 50%; font-size: 1.7rem; line-height: 1; color: #fff; background: rgba(20,18,14,.35); }
.qv-x:hover { background: rgba(20,18,14,.55); }
.qv-media { position: relative; min-height: 280px; }
.qv-art { position: absolute; inset: 0; }
.qv-art .room-scene { position: absolute; inset: 0; }
.qv-media-meta { position: absolute; bottom: 0.8rem; left: 0.8rem; z-index: 2; display: flex; gap: 0.4rem; }
.qv-media-meta span { padding: 0.25rem 0.7rem; border-radius: 999px; font-size: 0.74rem; font-weight: 600; color: var(--ink); background: color-mix(in srgb, var(--paper) 90%, transparent); backdrop-filter: blur(4px); }
.qv-info { padding: clamp(1.4rem, 3vw, 2rem); overflow-y: auto; }
.qv-info .r-rate { padding: 0; margin-bottom: 0.6rem; }
.qv-name { font-size: clamp(1.7rem, 3.4vw, 2.3rem); color: var(--ink); }
.qv-view { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; color: var(--teal); margin: 0.3rem 0 0.8rem; }
.qv-desc { font-size: 0.96rem; color: var(--ink-2); line-height: 1.6; margin-bottom: 1.1rem; }
.qv-specs { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.2rem; }
.qv-specs li { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.35rem 0.8rem; border: 1px solid var(--line); border-radius: 999px; font-size: 0.8rem; color: var(--ink-2); }
.qv-specs li b { color: var(--ink); font-weight: 700; }
.qv-block { margin-bottom: 1.2rem; }
.qv-lbl { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 0.6rem; }
.qv-amen { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 0.8rem; }
.qv-amen li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--ink-2); }
.qv-amen li::before { content: ""; flex: none; width: 14px; height: 14px; border-radius: 50%; background: var(--teal-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m5 12 4.5 4.5L19 7' stroke='%232f7d83' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 10px no-repeat; }
[data-theme="dark"] .qv-amen li::before { background-color: var(--teal-soft); }
.qv-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; padding-top: 1.1rem; border-top: 1px solid var(--line-soft); }
.qv-price { display: flex; flex-direction: column; line-height: 1.1; }
.qv-from { font-size: 0.7rem; color: var(--ink-3); }
.qv-price strong { font-family: var(--serif); font-size: 1.8rem; font-weight: 600; color: var(--ink); }
.qv-per { font-size: 0.74rem; color: var(--ink-3); }
.qv-reserve { display: inline-flex; align-items: center; padding: 0.8rem 1.3rem; border-radius: 12px; background: var(--teal); color: var(--on-teal); font-size: 0.9rem; font-weight: 600; white-space: nowrap; transition: background-color .2s, transform .2s; }
.qv-reserve:hover { background: var(--teal-2); transform: translateY(-1px); }

/* ---- Reveal (gsap yoksa görünür) ---- */
[data-reveal] { opacity: 1; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .bookbar { max-width: 480px; }
  .loc { grid-template-columns: 1fr; }
  .loc-map { order: -1; max-width: 520px; }
  .resv-inner, .contact-inner { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .brand { position: static; transform: none; margin-right: auto; padding-left: 0.4rem; }
  .nav { justify-content: space-between; }
  .nav-drawer { display: flex; }
  .shop { grid-template-columns: 1fr; }
  .cats { position: static; flex-direction: column; }
  .cats-list { flex-direction: row; flex-wrap: wrap; }
  .cat { flex: 0 0 auto; }
  .trust-row { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .qv { grid-template-columns: 1fr; max-height: 90vh; overflow-y: auto; }
  .qv-media { min-height: 220px; }
}
@media (max-width: 560px) {
  .gal-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gal-pool, .gal-roof { grid-column: span 2; }
  .gal-pool { grid-row: span 1; }
  .bb-fields { grid-template-columns: 1fr; }
  .rf-row, .cf-row { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr; }
  .news-form { flex-direction: column; }
  .hero-trust { gap: 0.4rem 0.9rem; }
}
@media (max-width: 390px) {
  body { font-size: 15px; }
  section { padding-left: 1rem; padding-right: 1rem; }
  .r-name { font-size: 1.3rem; }
  .qv-amen { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .ann-track, .marquee-row, .hero-scene .sun, .hero-scene .boat, .hero-scene .bird, .hero-scroll svg, .lm-hotel i, .cr-dot, .room { animation: none !important; }
  .room { opacity: 1; transform: none; }
  * { transition-duration: .01ms !important; }
  .gal:hover .gal-art { transform: none; }
}
