/* =========================================================
   Leyl Urla — Tema stilleri
   Palet: kiremit / krem / zeytin · Tipografi: Garbata + el yazısı
   ========================================================= */

/* ---------- Fontlar ---------- */
@font-face {
	font-family: "Garbata";
	src: url("../fonts/garbata-medium.ttf") format("truetype");
	font-weight: 400 600;
	font-display: swap;
}
@font-face {
	font-family: "Petit Cochon";
	src: url("../fonts/petit-cochon.ttf") format("truetype");
	font-weight: 400;
	font-display: swap;
}

/* ---------- Değişkenler ---------- */
:root {
	--rust: #a8502a;
	--rust-dark: #8a3f20;
	--cream: #efe7d8;
	--cream-2: #f4eee2;
	--olive: #565330;
	--ink: #2f2a25;
	--ink-soft: #5b5249;
	--light: #fbf7ef;
	--line: rgba(168, 80, 42, 0.4);

	--serif: "Garbata", "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--script: "Petit Cochon", "Snell Roundhand", cursive;
	/* Gövde metni: rakamları da içeren temiz serif (GarbataTrial rakam glyph'i içermez). */
	--body: Georgia, "Times New Roman", serif;

	--maxw: 1180px;
	--gut: clamp(20px, 5vw, 64px);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--body);
	color: var(--ink);
	background: var(--cream);
	font-size: 17px;
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }

/* ---------- Tipografi yardımcıları ---------- */
.script { font-family: var(--script); font-weight: 400; }
.script--lg { font-size: 1.4em; }

.section-title {
	font-family: var(--serif);
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	text-align: center;
	font-size: clamp(20px, 2.4vw, 28px);
	color: var(--rust);
	margin: 0 auto 2.2rem;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.4rem;
	max-width: 760px;
}
.section-title::before,
.section-title::after {
	content: "";
	height: 1px;
	flex: 1;
	background: var(--line);
}
.section-title--left { justify-content: flex-start; text-align: left; }
.section-title--left::before, .section-title--left::after { display: none; }
.section-title--plain::before, .section-title--plain::after { display: none; }
.section-title--olive { color: var(--olive); }
.section-title--olive::before,
.section-title--olive::after { background: rgba(86, 83, 48, 0.4); }

/* ---------- Butonlar ---------- */
.btn {
	display: inline-block;
	font-family: var(--serif);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-size: 13px;
	cursor: pointer;
}
.btn--ghost {
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.8);
	padding: 0.85em 2.4em;
	border-radius: 40px;
	background: transparent;
	transition: background 0.25s, color 0.25s;
}
.btn--ghost:hover { background: #fff; color: var(--ink); }
.btn--pill {
	color: var(--rust);
	border: 1px solid var(--line);
	padding: 0.8em 2.2em;
	border-radius: 40px;
	background: transparent;
	transition: background 0.25s, color 0.25s;
}
.btn--pill:hover { background: var(--rust); color: #fff; border-color: var(--rust); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
	position: absolute;
	top: 0; left: 0; right: 0;
	z-index: 40;
	padding: 26px var(--gut) 0;
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.site-logo img { height: 64px; width: auto; filter: drop-shadow(0 1px 6px rgba(0,0,0,.25)); }
.nav-toggle {
	position: absolute;
	right: 0; top: 50%;
	transform: translateY(-50%);
	background: none; border: 0; cursor: pointer;
	color: #fff;
	display: flex; align-items: center; gap: 10px;
	font-family: var(--serif); letter-spacing: 0.25em; font-size: 13px;
}
.nav-toggle__icon { width: 26px; height: 1px; background: #fff; box-shadow: 0 6px 0 #fff, 0 -6px 0 #fff; }

/* scroll'da koyu zemin */
.site-header.is-scrolled {
	position: fixed;
	background: rgba(47, 42, 37, 0.95);
	padding-top: 14px; padding-bottom: 14px;
	animation: leyl-slidedown 0.35s ease;
}
.site-header.is-scrolled .site-logo img { height: 44px; }
@keyframes leyl-slidedown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

/* video modal (JS ile eklenir) */
.video-modal {
	position: fixed; inset: 0; background: rgba(20,16,12,.94);
	display: flex; align-items: center; justify-content: center; z-index: 90; padding: 5vw;
}
.video-modal__frame { width: min(960px, 92vw); aspect-ratio: 16/9; }
.video-modal__frame iframe,
.video-modal__frame video { width: 100%; height: 100%; }
.video-modal__close { position: absolute; top: 24px; right: 32px; background: none; border: 0; color: #fff; font-size: 42px; cursor: pointer; }

/* soldan açılan yan menü paneli */
.nav-backdrop {
	position: fixed; inset: 0; background: rgba(30, 24, 20, 0.45);
	opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0s linear 0.4s;
	z-index: 55;
}
.nav-backdrop.is-open { opacity: 1; visibility: visible; transition: opacity 0.4s ease; }

.site-nav {
	position: fixed;
	top: 0; left: 0; bottom: 0;
	width: min(420px, 84vw);
	background: var(--cream);
	color: var(--ink);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 34px clamp(28px, 4vw, 54px);
	transform: translateX(-100%);
	visibility: hidden;
	box-shadow: 24px 0 60px rgba(0, 0, 0, 0.18);
	transition: transform 0.45s cubic-bezier(.4,0,.2,1), visibility 0s linear 0.45s;
	z-index: 60;
	overflow-y: auto;
}
.site-nav.is-open { transform: translateX(0); visibility: visible; transition: transform 0.45s cubic-bezier(.4,0,.2,1); }
.site-nav__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.4rem; }
.site-nav__brand { font-family: var(--serif); letter-spacing: 0.3em; font-size: 13px; color: var(--rust); }
.site-nav__close {
	background: none; border: 0; color: var(--ink); font-size: 34px; cursor: pointer; line-height: 1;
}
.site-nav__list { list-style: none; margin: 0; padding: 0; text-align: left; }
.site-nav__list li { margin: 0.9rem 0; }
.site-nav__list a {
	font-family: var(--serif);
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: clamp(17px, 1.8vw, 22px);
	color: var(--ink);
	transition: color 0.2s, padding-left 0.2s;
}
.site-nav__list a:hover { color: var(--rust); padding-left: 8px; }
.site-nav__rule { height: 1px; background: var(--line); margin: 2rem 0 1.6rem; }
.site-nav__foot { margin-top: auto; padding-top: 2rem; }
/* beyaz logoyu krem panelde görünür kılmak için koyulaştır */
.site-nav__foot img { height: 50px; width: auto; filter: brightness(0) saturate(100%); opacity: 0.72; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
	position: relative;
	min-height: 86vh;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
}
.hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(40,30,20,.35) 0%, rgba(40,30,20,.15) 45%, rgba(40,30,20,.45) 100%);
}
.hero__content { position: relative; z-index: 2; padding: 0 var(--gut); max-width: 880px; }
.hero__title {
	font-family: var(--serif);
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-size: clamp(24px, 4vw, 46px);
	line-height: 1.3;
	margin: 0 0 1.6rem;
	text-shadow: 0 2px 18px rgba(0,0,0,.3);
}
.hero--center .hero__title { letter-spacing: 0.3em; }

/* =========================================================
   ANA SAYFA — intro
   ========================================================= */
.intro { max-width: var(--maxw); margin: 0 auto; padding: clamp(48px, 8vw, 110px) var(--gut) clamp(30px,5vw,60px); }
.intro__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(28px, 5vw, 70px);
	align-items: start;
}
.intro__text { position: relative; }
/* paragrafların solunda ince dikey çizgi (başlığın altından başlar) */
.intro__body { position: relative; padding-left: 24px; }
.intro__body::before {
	content: ""; position: absolute; left: 0; top: 6px; bottom: 4px; width: 1px; background: var(--line);
}
.intro__body p { color: var(--ink-soft); }
.intro__sign img { border-radius: 2px; box-shadow: 22px 22px 0 #d9d2c4; }

/* iç mekan: TAM GENİŞLİK kiremit bant, görsel sola taşar (üst+alt) */
.intro-split {
	background: var(--rust);
	margin: clamp(56px, 9vw, 120px) 0 clamp(40px, 6vw, 70px);
}
.intro-split__inner {
	max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut);
	display: grid; grid-template-columns: 44% 1fr; align-items: center; gap: clamp(20px,3vw,40px);
}
.intro-split__media { margin: -52px 0; z-index: 2; }
.intro-split__media img {
	width: 100%; height: 500px; object-fit: cover;
	box-shadow: 0 24px 50px rgba(0,0,0,.2);
}
.intro-split__text { color: var(--light); padding: clamp(40px,5vw,56px) 0 clamp(40px,5vw,56px) clamp(10px,2vw,30px); }
.intro-split__text p { margin: 0 0 1.1em; }

/* =========================================================
   VIDEO BANDI
   ========================================================= */
.videoband {
	position: relative;
	background-size: cover;
	background-position: center;
	color: #fff;
	text-align: center;
	padding: clamp(70px, 12vw, 150px) var(--gut);
}
.videoband__overlay { position: absolute; inset: 0; background: rgba(40,30,22,.4); }
.videoband--olive .videoband__overlay { background: rgba(60,58,34,.5); }
/* tasarımdaki kiremit çerçeve barları (üst + alt, yanlardan içeri) */
.videoband--framed { margin: clamp(40px,6vw,72px) 0; }
.videoband--framed::before, .videoband--framed::after {
	content: ""; position: absolute; left: clamp(20px,5vw,84px); right: clamp(20px,5vw,84px);
	height: 28px; background: var(--rust); z-index: 3;
}
.videoband--framed::before { top: -14px; }
.videoband--framed::after { bottom: -14px; }
.videoband__content { position: relative; z-index: 2; }
.videoband__over { letter-spacing: 0.25em; text-transform: uppercase; font-size: 14px; margin: 0; }
.videoband__title { margin: 0.1em 0; font-weight: 400; }
.videoband__title .script { font-size: clamp(40px, 7vw, 78px); }
.videoband__sub { letter-spacing: 0.4em; text-transform: uppercase; font-size: clamp(16px, 2vw, 22px); margin: 0; }
.videoband__brand { margin: 0; line-height: 1; }
.videoband__brand .script { font-size: clamp(54px, 10vw, 120px); display: block; }
.videoband__brandsub { letter-spacing: 0.5em; text-transform: uppercase; font-size: clamp(14px, 2vw, 20px); }

.play-btn {
	margin-top: 1.6rem;
	background: none; border: 0; cursor: pointer;
	display: inline-flex; flex-direction: column; align-items: center; gap: 12px;
	color: #fff;
}
.play-btn__icon {
	width: 62px; height: 62px; border: 1px solid rgba(255,255,255,.85);
	border-radius: 50%; display: flex; align-items: center; justify-content: center;
	font-size: 16px; padding-left: 4px; transition: background 0.25s, color 0.25s;
}
.play-btn:hover .play-btn__icon { background: #fff; color: var(--ink); }
.play-btn__label { letter-spacing: 0.22em; font-size: 12px; }

/* =========================================================
   KARELER (4 sabit dikey görsel + yan + işaretleri)
   ========================================================= */
.kareler { padding: clamp(48px, 8vw, 100px) var(--gut); max-width: 1320px; margin: 0 auto; }
.kareler__row {
	position: relative;
	display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 26px);
}
.kareler__item { margin: 0; }
.kareler__item img { aspect-ratio: 2/3; object-fit: cover; width: 100%; box-shadow: 14px 14px 0 #e3dccd; }
/* yanlardaki + işaretleri */
.kareler__row::before, .kareler__row::after {
	content: "+"; position: absolute; top: 50%; transform: translateY(-50%);
	color: var(--rust); font-size: 26px; line-height: 1;
}
.kareler__row::before { left: calc(-1 * clamp(14px,2.4vw,32px)); }
.kareler__row::after { right: calc(-1 * clamp(14px,2.4vw,32px)); }
@media (max-width: 700px) {
	.kareler__row { grid-template-columns: 1fr 1fr; }
	.kareler__row::before, .kareler__row::after { display: none; }
}

/* =========================================================
   TEXT BLOCK / TRIO / BAND
   ========================================================= */
.textblock { max-width: var(--maxw); margin: 0 auto; padding: clamp(48px, 8vw, 96px) var(--gut) clamp(20px,4vw,40px); }
.textblock--center { text-align: center; }
.textblock__cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,56px); max-width: 880px; margin: 0 auto; color: var(--ink-soft); }
.textblock--narrow { max-width: 760px; text-align: center; }
.rule-wide { max-width: var(--maxw); margin: clamp(20px,4vw,40px) auto 0; height: 1px; background: var(--line); }
.textblock__lead { color: var(--ink-soft); }

.trio {
	position: relative;
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: clamp(12px, 2vw, 24px);
	max-width: var(--maxw); margin: 0 auto; padding: clamp(20px,4vw,40px) var(--gut) clamp(56px,8vw,100px);
}
/* tasarımdaki yanlardaki + işaretleri */
.trio::before, .trio::after {
	content: "+"; position: absolute; top: calc((100% - clamp(56px,8vw,100px)) / 2);
	transform: translateY(-50%); color: var(--rust); font-size: 26px; line-height: 1;
}
.trio::before { left: calc(var(--gut) / 3); }
.trio::after { right: calc(var(--gut) / 3); }
@media (max-width: 600px) { .trio::before, .trio::after { display: none; } }
.trio__item { margin: 0; }
.trio__item img { aspect-ratio: 4/3; object-fit: cover; width: 100%; box-shadow: 0 14px 30px rgba(0,0,0,.12); }

.band {
	position: relative; background-size: cover; background-position: center;
	min-height: 380px; display: flex; align-items: center; justify-content: center;
	text-align: center; color: #fff; margin: clamp(34px,5vw,60px) 0;
}
/* tasarımdaki kiremit offset çerçeve: üst-sol ve alt-sağ barlar */
.band::before {
	content: ""; position: absolute; left: 0; right: 32%; top: -16px; height: 34px;
	background: var(--rust); z-index: 0;
}
.band::after {
	content: ""; position: absolute; left: 32%; right: 0; bottom: -16px; height: 34px;
	background: var(--rust); z-index: 0;
}
.band__overlay { position: absolute; inset: 0; background: rgba(40,28,20,.4); }
.band__title {
	position: relative; z-index: 2;
	font-family: var(--serif); font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
	font-size: clamp(20px, 3vw, 34px); padding: 0 var(--gut);
}

/* =========================================================
   ODALAR
   ========================================================= */
.rooms { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px,9vw,110px) var(--gut); }
.room {
	display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,60px);
	align-items: center; margin-bottom: clamp(48px,7vw,90px);
}
.room--reverse .room__media { order: 2; }
.room__main img { width: 100%; box-shadow: 14px 14px 0 var(--cream-2); }
.room__thumbs { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 26px; }
.room__thumbs img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
/* tasarımdaki küçük görsel şeridini saran + işaretleri */
.room__thumbs::before, .room__thumbs::after {
	content: "+"; position: absolute; top: 50%; transform: translateY(-50%);
	color: var(--rust); font-size: 22px; line-height: 1;
}
.room__thumbs::before { left: -28px; }
.room__thumbs::after { right: -28px; }

.room__name {
	font-family: var(--serif); color: var(--rust); text-transform: uppercase;
	letter-spacing: 0.12em; font-weight: 500; font-size: clamp(20px,2.4vw,28px); margin: 0 0 1.1rem;
	line-height: 1.3; padding-bottom: 1rem; border-bottom: 1px solid var(--line);
}

/* room1 (image sol, bilgi sağ) → sağ hizalı; room2 (reverse) → sol hizalı */
.room:not(.room--reverse) .room__info { text-align: right; }
.room:not(.room--reverse) .room__specs ul:first-child { text-align: right; }
.room:not(.room--reverse) .room__specs ul:last-child { text-align: left; }

.room__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; margin-bottom: 1.8rem; }
.room__specs ul { list-style: none; margin: 0; padding: 0; }
.room__specs li {
	padding: 7px 0; border-bottom: 1px solid rgba(168,80,42,.18);
	color: var(--ink-soft); font-size: 15px;
}

/* =========================================================
   URLA — zigzag yol
   ========================================================= */
/* tam genişlik kiremit bant */
.urla-band {
	background: var(--rust); color: var(--light); text-align: center;
	padding: clamp(20px,3vw,30px) var(--gut);
}
.urla-band h2 {
	margin: 0; font-family: var(--serif); font-weight: 500;
	letter-spacing: 0.22em; text-transform: uppercase; font-size: clamp(15px,1.8vw,20px);
}
.urla { max-width: var(--maxw); margin: 0 auto; padding: clamp(48px,8vw,90px) var(--gut); }
.urla__intro { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; color: var(--ink-soft); }
.urla__path { position: relative; }
.urla__path::before {
	content: ""; position: absolute; left: 50%; top: 10px; bottom: 10px;
	border-left: 2px dotted var(--line); transform: translateX(-50%); z-index: 0;
}
.urla-spot {
	position: relative; z-index: 1;
	display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,3vw,48px);
	align-items: center; margin-bottom: clamp(40px,6vw,72px);
}
.urla-spot--right .urla-spot__img { order: 2; }
.urla-spot--right .urla-spot__body { text-align: right; }
.urla-spot__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: 0 14px 30px rgba(0,0,0,.12); }
.urla-spot__title {
	font-family: var(--serif); color: var(--rust); text-transform: uppercase;
	letter-spacing: 0.12em; font-weight: 500; font-size: clamp(18px,2.2vw,24px); margin: 0 0 0.5rem;
}
.urla-spot__dist {
	display: inline-block; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
	color: #fff; background: var(--rust); padding: 3px 12px; border-radius: 20px; margin-bottom: 0.9rem;
}
.urla-spot__text { color: var(--ink-soft); }

/* =========================================================
   GALERİ grid + lightbox
   ========================================================= */
.gallery { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px,9vw,110px) var(--gut); }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px,2vw,22px); }
.gallery__item { display: block; overflow: hidden; }
.gallery__item img { aspect-ratio: 3/4; object-fit: cover; width: 100%; transition: transform 0.5s; }
.gallery__item:hover img { transform: scale(1.05); }

.lightbox {
	position: fixed; inset: 0; background: rgba(25,20,16,.92);
	display: none; align-items: center; justify-content: center; z-index: 80; padding: 5vw;
}
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: 92vw; max-height: 88vh; width: auto; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox__close { position: absolute; top: 24px; right: 32px; background: none; border: 0; color: #fff; font-size: 42px; cursor: pointer; }

/* =========================================================
   İLETİŞİM
   ========================================================= */
.contact-info {
	background: var(--rust); color: var(--light);
	display: grid; grid-template-columns: repeat(3, 1fr);
	padding: clamp(34px,5vw,56px) clamp(24px,6vw,90px);
	width: 100%; margin: 0; position: relative; z-index: 5;
}
.contact-info__item {
	display: flex; flex-direction: column; align-items: center; gap: 16px;
	text-align: center; font-size: 15px; line-height: 1.7; padding: 0 clamp(16px,3vw,40px);
}
.contact-info__item + .contact-info__item { border-left: 1px solid rgba(255,255,255,0.3); }
.contact-info__item p { margin: 0; }
.contact-info__icon { font-size: 28px; line-height: 1; opacity: .92; }
.contact-info__item a { text-decoration: underline; }
@media (max-width: 820px) {
	.contact-info__item + .contact-info__item { border-left: 0; border-top: 1px solid rgba(255,255,255,0.3); padding-top: 24px; margin-top: 24px; }
}

.contact { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px,9vw,100px) var(--gut); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); }
.contact__form { display: flex; flex-direction: column; gap: 18px; }
.contact__form label {
	display: flex; flex-direction: column; gap: 8px;
	font-family: var(--serif); letter-spacing: 0.08em; color: var(--rust); font-size: 14px;
}
.contact__form input,
.contact__form textarea {
	font-family: var(--body); font-size: 16px; color: var(--ink);
	background: var(--cream-2); border: 1px solid rgba(168,80,42,.25);
	border-radius: 30px; padding: 14px 20px;
}
.contact__form textarea { border-radius: 20px; resize: vertical; }
.contact__form .btn--pill { align-self: flex-start; margin-top: 6px; }
.hp { position: absolute !important; left: -9999px !important; }
.contact__map { min-height: 420px; }
.contact__map iframe { width: 100%; height: 100%; min-height: 420px; }

.form-alert { max-width: 760px; margin: 0 auto 1.5rem; padding: 12px 20px; border-radius: 8px; text-align: center; }
.form-alert--ok { background: #e6efe0; color: #3a5a2c; }
.form-alert--err { background: #f4e0d8; color: #9a3b1f; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--rust); color: var(--light); padding: clamp(40px,6vw,70px) var(--gut) 0; }
.site-footer__inner {
	max-width: var(--maxw); margin: 0 auto;
	display: grid; grid-template-columns: 1.2fr 1.3fr 1fr 1fr 1fr; gap: clamp(20px,3vw,40px);
	align-items: start; font-size: 14px; line-height: 1.7;
}
.site-footer__logo img { height: 56px; width: auto; margin-bottom: 16px; }
.site-footer__social { display: flex; gap: 12px; }
.site-footer__social a {
	width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%;
	display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s;
}
.site-footer__social a:hover { background: #fff; color: var(--rust); }
.site-footer__col p { margin: 0 0 4px; }
.site-footer__contact a { text-decoration: underline; }
.site-footer__list { list-style: none; margin: 0; padding: 0; }
.site-footer__list li { margin-bottom: 6px; }
.site-footer__list a {
	text-transform: uppercase; letter-spacing: 0.14em; font-size: 12px; font-family: var(--serif);
	transition: opacity .2s;
}
.site-footer__list a:hover { opacity: .7; }
.site-footer__copy {
	max-width: var(--maxw); margin: clamp(28px,4vw,46px) auto 0;
	border-top: 1px solid rgba(255,255,255,.25); padding: 18px 0;
	text-align: right; font-size: 12px; opacity: .85;
}

/* =========================================================
   Genel sayfa / 404
   ========================================================= */
.page-generic { max-width: 820px; margin: 0 auto; padding: clamp(120px,16vw,180px) var(--gut) clamp(60px,9vw,100px); }
.page-generic__content { color: var(--ink-soft); }
.empty-note { text-align: center; color: var(--ink-soft); padding: 40px 0; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
	.site-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
	.intro__grid,
	.textblock__cols,
	.room,
	.urla-spot,
	.contact__grid { grid-template-columns: 1fr; }
	/* iç mekan bloğu mobilde normal istif */
	.intro-split__inner { grid-template-columns: 1fr; }
	.intro-split__media { margin: 0 0 18px; }
	.intro-split__media img { height: auto; aspect-ratio: 4/3; }
	.intro-split__text { padding: clamp(24px,6vw,40px) 0 clamp(8px,3vw,16px); }
	.room--reverse .room__media { order: 0; }
	.urla-spot--right .urla-spot__img { order: 0; }
	.urla-spot--right .urla-spot__body { text-align: left; }
	.section-title--left { text-align: center; }
	.contact-info { grid-template-columns: 1fr; margin-top: -30px; }
	.urla__path::before { display: none; }
}
@media (max-width: 600px) {
	.trio,
	.gallery__grid { grid-template-columns: 1fr 1fr; }
	.room__specs { grid-template-columns: 1fr 1fr; }
	.site-footer__inner { grid-template-columns: 1fr; }
	.site-logo img { height: 50px; }
	.hero { min-height: 78vh; }
}
