/* ==========================================================
   SIMLA — Ana Stil Dosyası
   ========================================================== */

/* ── 1. Değişkenler ──────────────────────────────────────── */
:root {
  --cream:       #F5F1E9;
  --cream-dark:  #EDE8DC;
  --dark:        #18181A;
  --charcoal:    #2D2D2B;
  --gold:        #9C8B6E;
  --gold-light:  #C8B89A;
  --gold-pale:   #EAE0D0;
  --beige:       #E5DBC9;
  --forest:      #3B4230;
  --gray:        #7A7875;
  --white:       #FFFFFF;
  --border:      rgba(156, 139, 110, 0.22);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', 'Helvetica Neue', system-ui, sans-serif;

  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);

  --nav-h: 76px;
  --max-w: 1300px;
}

/* ── 2. Reset & Temel ────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.75;
  font-weight: 300;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 0; }

/* ── 3. Tipografi ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
}

em {
  font-style: italic;
  font-family: var(--font-serif);
}

/* ── 4. Yardımcı Sınıflar ───────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 56px;
}

.section-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.section-label--light { color: var(--gold-light); }

.section-header {
  text-align: center;
  margin: 0 auto 80px;
  max-width: 640px;
}

.section-header h2 {
  font-size: clamp(2.1rem, 3.5vw, 3rem);
  color: var(--dark);
  margin-bottom: 18px;
}

.section-sub {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.8;
}

/* Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
  cursor: pointer;
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
}

.btn--gold:hover {
  background: var(--charcoal);
}

.btn--outline {
  border: 1px solid currentColor;
}

.btn--light {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.45);
}

.btn--light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  color: var(--white);
}

.btn--full { width: 100%; }

/* Reveal Animasyon */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity   0.85s var(--ease-out),
    transform 0.85s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 5. Navigasyon ───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.nav.scrolled {
  background: rgba(245, 241, 233, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

/* Logo */
.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--white);
  transition: color 0.4s var(--ease);
  flex-shrink: 0;
}

.nav.scrolled .nav__logo { color: var(--dark); }

/* Linkler */
.nav__links {
  display: flex;
  align-items: center;
  gap: 44px;
}

.nav__links a {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}

.nav__links a:hover { color: var(--white); }

.nav.scrolled .nav__links a { color: var(--gray); }
.nav.scrolled .nav__links a:hover { color: var(--dark); }

/* Rezervasyon butonu */
.nav__reserve {
  padding: 10px 26px !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
  color: rgba(255,255,255,0.9) !important;
}

.nav__reserve:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(255,255,255,0.9) !important;
  color: var(--white) !important;
}

.nav.scrolled .nav__reserve {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  background: transparent !important;
}

.nav.scrolled .nav__reserve:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  padding: 8px;
}

.nav__burger span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}

.nav.scrolled .nav__burger span { background: var(--dark); }

.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.open span:nth-child(2) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobil Menü */
.nav__mobile {
  background: rgba(245, 241, 233, 0.98);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}

.nav__mobile.open { max-height: 400px; }

.nav__mobile ul {
  padding: 28px 56px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.nav__mobile a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.3s;
}

.nav__mobile a:hover { color: var(--gold); }

/* ── 6. Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  transform: scale(1.06);
  transition: transform 8s ease;
  will-change: transform;
}

.hero.loaded .hero__media img { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(18,18,16,0.25) 0%,
    rgba(18,18,16,0.55) 50%,
    rgba(18,18,16,0.78) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 32px;
  max-width: 820px;
}

.hero__eyebrow {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.3s forwards;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(5.5rem, 13vw, 11rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  line-height: 0.95;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out) 0.5s forwards;
}

.hero__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.75s forwards;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1s forwards;
}

/* Scroll göstergesi */
.hero__scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeIn 1s 1.8s forwards;
  transition: opacity 0.5s;
}

.hero__scroll.hidden { opacity: 0 !important; }

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  animation: pulse-line 2.2s ease-in-out infinite;
}

.hero__scroll-text {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes pulse-line {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50%       { opacity: 0.75; transform: scaleY(0.6); }
}

/* ── 7. Konsept ──────────────────────────────────────────── */
.konsept {
  padding: 130px 0 0;
  background: var(--cream);
}

.konsept__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 56px;
}

.konsept__media {
  position: relative;
  height: 620px;
}

.konsept__media img { border-radius: 1px; }

.konsept__badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 96px;
  height: 96px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  gap: 2px;
}

.konsept__badge span {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
}

.konsept__badge strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.konsept__text { padding-right: 24px; }

.konsept__heading {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 28px;
  line-height: 1.2;
}

.konsept__divider {
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
}

.konsept__text p {
  font-size: 0.93rem;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.85;
}

.konsept__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--charcoal);
  border-left: 2px solid var(--gold);
  padding-left: 22px;
  margin-top: 36px;
  line-height: 1.65;
}

/* Manifesto bandı */
.konsept__manifesto {
  margin-top: 100px;
  padding: 70px 56px;
  background: var(--dark);
  text-align: center;
}

.konsept__manifesto p {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

.konsept__manifesto em { color: var(--gold-light); }

/* ── 8. Konaklama ───────────────────────────────────────── */
.konaklama {
  padding: 130px 0;
  background: var(--dark);
}

.konaklama .section-header h2 { color: var(--white); }
.konaklama .section-sub { color: rgba(255,255,255,0.45); }

.konaklama__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.room-card {
  background: #1E1E1C;
  overflow: hidden;
  position: relative;
}

.room-card__media {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.room-card__media img {
  transition: transform 0.7s var(--ease);
}

.room-card:hover .room-card__media img { transform: scale(1.06); }

.room-card__tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--gold);
  color: var(--white);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  z-index: 1;
}

.room-card__body {
  padding: 36px 32px 44px;
}

.room-card__num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 6px;
  user-select: none;
}

.room-card h3 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: var(--white);
  margin-bottom: 16px;
}

.room-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 28px;
}

.room-card__features {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.room-card__features li {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding-left: 18px;
  position: relative;
}

.room-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.room-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: gap 0.3s, color 0.3s;
}

.room-card__link:hover {
  gap: 16px;
  color: var(--white);
}

/* ── 9. Deneyim ──────────────────────────────────────────── */
.deneyim {
  padding: 130px 0 0;
  background: var(--cream);
}

.deneyim__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 90px;
  border: 1px solid var(--border);
}

.deneyim__feature {
  padding: 52px 36px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}

.deneyim__feature:last-child { border-right: none; }

.deneyim__feature:hover {
  background: var(--cream-dark);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  z-index: 1;
  position: relative;
}

.deneyim__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 28px;
  color: var(--gold);
}

.deneyim__icon svg {
  width: 100%;
  height: 100%;
}

.deneyim__feature h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 14px;
}

.deneyim__feature p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.8;
}

/* Tam genişlik görsel */
.deneyim__full {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.deneyim__full img {
  transition: transform 0.7s var(--ease);
}

.deneyim__full:hover img { transform: scale(1.03); }

.deneyim__full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(18,18,16,0.82) 0%,
    rgba(18,18,16,0.3)  60%,
    rgba(18,18,16,0.1)  100%
  );
  display: flex;
  align-items: flex-end;
  padding: 64px;
}

.deneyim__full-text {
  max-width: 500px;
  color: var(--white);
}

.deneyim__full-text h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  margin-bottom: 18px;
  line-height: 1.25;
}

.deneyim__full-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

/* ── 10. Sessizlik Manifestosu ───────────────────────────── */
.manifesto {
  padding: 130px 0;
  background: var(--forest);
}

.manifesto__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 56px;
}

.manifesto__content h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  color: var(--white);
  margin-bottom: 52px;
  line-height: 1.15;
}

.manifesto__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.manifesto__item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.manifesto__item:first-child { border-top: 1px solid rgba(255,255,255,0.1); }

.manifesto__dash {
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
  user-select: none;
}

.manifesto__item p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

.manifesto__media {
  height: 520px;
  overflow: hidden;
  position: relative;
}

.manifesto__media img {
  border-radius: 1px;
  transition: transform 0.7s var(--ease);
}

.manifesto__media:hover img { transform: scale(1.03); }

/* ── 11. Galeri ──────────────────────────────────────────── */
.galeri {
  padding: 130px 0 0;
  background: var(--cream);
}

.galeri__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 4px;
  margin-top: 60px;
}

.galeri__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.galeri__item img {
  transition: transform 0.65s var(--ease);
}

.galeri__item:hover img { transform: scale(1.07); }

.galeri__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,18,16,0);
  transition: background 0.4s var(--ease);
}

.galeri__item:hover .galeri__item-overlay {
  background: rgba(18,18,16,0.18);
}

/* Grid yerleşimleri */
.galeri__item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.galeri__item:nth-child(2) { grid-column: span 4; grid-row: span 1; }
.galeri__item:nth-child(3) { grid-column: span 3; grid-row: span 1; }
.galeri__item:nth-child(4) { grid-column: span 4; grid-row: span 1; }
.galeri__item:nth-child(5) { grid-column: span 3; grid-row: span 1; }

/* ── 12. Rezervasyon ─────────────────────────────────────── */
.rezervasyon {
  padding: 130px 0;
  background: var(--dark);
}

.rezervasyon__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 90px;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 56px;
}

.rezervasyon__text h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.15;
}

.rezervasyon__text > p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
  margin-bottom: 52px;
}

.rezervasyon__info {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.09);
}

.rezervasyon__info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

.rezervasyon__info-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.rezervasyon__info-val {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
}

/* Form */
.rezervasyon__form-wrap {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 52px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}

.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.85);
  padding: 13px 0;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s var(--ease);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.18);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--gold);
}

.form-group select option {
  background: #1E1E1C;
  color: rgba(255,255,255,0.85);
}

.form-group textarea { resize: none; }

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.35);
  cursor: pointer;
}

.form-submit { margin-top: 36px; }

.form-note {
  font-size: 10.5px;
  color: rgba(255,255,255,0.22);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

/* ── 13. Footer ──────────────────────────────────────────── */
.footer {
  background: #111110;
  padding: 80px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--white);
  margin-bottom: 18px;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  max-width: 260px;
}

.footer__col-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 28px;
  display: block;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}

.footer__nav a:hover { color: var(--white); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contact a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}

.footer__contact a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
}

.footer__bottom p {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

.footer__bottom a {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  transition: color 0.3s;
}

.footer__bottom a:hover { color: rgba(255,255,255,0.5); }

/* ── 14. Responsive ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .container { padding: 0 40px; }

  .konsept__inner,
  .manifesto__inner,
  .rezervasyon__inner { padding: 0 40px; gap: 60px; }

  .konaklama__grid { grid-template-columns: repeat(2, 1fr); }
  .room-card:last-child { grid-column: span 2; }

  .deneyim__grid { gap: 0; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .konsept__inner {
    grid-template-columns: 1fr;
    padding: 0 32px;
    gap: 52px;
  }
  .konsept__media { height: 420px; }
  .konsept__badge { right: 0; bottom: -20px; }
  .konsept__text { padding-right: 0; }
  .konsept__manifesto { padding: 52px 32px; }

  .konaklama__grid { grid-template-columns: 1fr; }
  .room-card:last-child { grid-column: span 1; }

  .deneyim__grid { grid-template-columns: repeat(2, 1fr); }
  .deneyim__feature { border-bottom: 1px solid var(--border); }
  .deneyim__feature:nth-child(2) { border-right: none; }
  .deneyim__feature:nth-last-child(-n+2) { border-bottom: none; }

  .manifesto__inner {
    grid-template-columns: 1fr;
    padding: 0 32px;
    gap: 52px;
  }
  .manifesto__media { height: 360px; }

  .rezervasyon__inner {
    grid-template-columns: 1fr;
    padding: 0 32px;
    gap: 52px;
  }

  .galeri__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .galeri__item { grid-column: span 1 !important; grid-row: span 1 !important; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 44px; }
  .footer__brand { grid-column: span 2; }

  .nav__mobile ul { padding: 28px 32px 36px; }
}

@media (max-width: 600px) {
  .container { padding: 0 24px; }

  .konsept__inner,
  .manifesto__inner,
  .rezervasyon__inner { padding: 0 24px; gap: 40px; }

  .konsept__media { height: 300px; }
  .konsept__manifesto { padding: 44px 24px; }

  .deneyim__grid { grid-template-columns: 1fr; }
  .deneyim__feature { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .deneyim__feature:last-child { border-bottom: none !important; }

  .deneyim__full { height: 380px; }
  .deneyim__full-overlay { padding: 36px 28px; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .rezervasyon__form-wrap { padding: 36px 24px; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .footer__bottom { flex-direction: column; gap: 8px; }

  .galeri__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }

  .hero__title { letter-spacing: 0.18em; }
  .hero__actions { flex-direction: column; align-items: center; }
}
