/* Rusta — editorial layout (PAISANA-inspired scale) */

:root {
  --cream: #f8f4ed;
  --sand: #e8dfd0;
  --wood: #c4a882;
  --forest: #2d4a3e;
  --charcoal: #3d3d3d;
  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --sans: "Lato", "Montserrat", system-ui, sans-serif;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(248, 244, 237, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232, 223, 208, 0.9);
  transition: background 0.4s var(--ease);
}

.site-header.on-dark {
  background: rgba(45, 74, 62, 0.35);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.site-header.on-dark .nav-main a,
.site-header.on-dark .logo img { filter: brightness(0) invert(1); opacity: 0.95; }

.site-header.on-dark .btn-reservation {
  background: var(--cream);
  color: var(--forest);
}

.header-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img { height: 44px; width: auto; }

.nav-main {
  display: flex;
  gap: clamp(8px, 2vw, 28px);
  list-style: none;
}

.nav-main a {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--charcoal);
  opacity: 0.85;
  transition: opacity 0.25s, color 0.25s;
}

.nav-main a:hover,
.nav-main a.active { opacity: 1; color: var(--forest); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-reservation {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  background: var(--forest);
  padding: 14px 26px;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), background 0.3s;
}

.btn-reservation:hover {
  background: #3d6154;
  transform: translateY(-2px);
}

.lang-switch {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--forest);
  border: 1.5px solid var(--forest);
  padding: 10px 14px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.lang-switch:hover {
  background: var(--forest);
  color: var(--cream);
}

.site-header.on-dark .lang-switch {
  color: var(--cream);
  border-color: rgba(255,255,255,0.6);
}

.site-header.on-dark .lang-switch:hover {
  background: rgba(255,255,255,0.15);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--forest);
  margin: 6px 0;
}

/* —— Hero (fullscreen video) —— */
.hero-editorial {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  margin-top: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest);
}

.hero-editorial__media {
  position: absolute;
  inset: 0;
}

.hero-editorial__media video,
.hero-editorial__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-editorial__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(45, 74, 62, 0.15) 0%,
    rgba(45, 74, 62, 0.25) 40%,
    rgba(248, 244, 237, 0.55) 85%,
    var(--cream) 100%
  );
}

.hero-editorial__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(100px, 14vh, 160px) clamp(20px, 5vw, 64px) clamp(48px, 8vh, 96px);
}

.hero-editorial__tag {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-editorial__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--forest);
  max-width: 14ch;
  margin-bottom: 28px;
}

.hero-editorial__title em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
}

.hero-editorial__lead {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 42rem;
  color: var(--charcoal);
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-editorial__cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
}

.link-pill {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), background 0.3s;
}

.link-pill--primary {
  background: var(--forest);
  color: var(--cream);
}

.link-pill--ghost {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
}

.link-pill:hover { transform: translateY(-2px); }

/* —— Editorial blocks —— */
.block-editorial {
  padding: clamp(72px, 12vh, 140px) clamp(20px, 5vw, 64px);
}

.block-editorial--narrow {
  max-width: 1440px;
  margin: 0 auto;
}

.eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 24px;
  opacity: 0.85;
}

.display-lg {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin-bottom: 32px;
  max-width: 18ch;
}

.display-lg em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
}

.prose-editorial {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.75;
  max-width: 38rem;
  color: var(--charcoal);
  font-weight: 300;
}

.prose-editorial p + p { margin-top: 1.25em; }

.prose-editorial strong { font-weight: 600; color: var(--forest); }

/* Mekân hikâyesi — ana sayfa */
.story-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.story-home__visual {
  min-height: clamp(420px, 55vh, 720px);
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}

/* Full-bleed image */
.visual-bleed {
  width: 100%;
  min-height: clamp(50vh, 70vh, 85vh);
  background-size: cover;
  background-position: center;
  position: relative;
}

.visual-bleed__caption {
  position: absolute;
  bottom: clamp(24px, 4vw, 48px);
  left: clamp(20px, 5vw, 64px);
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

/* Split row (about page) */
.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: clamp(480px, 65vh, 780px);
}

.split-row__media {
  background-size: cover;
  background-position: center;
  min-height: 360px;
}

.split-row__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 96px) clamp(32px, 6vw, 80px);
  background: var(--cream);
}

.split-row--reverse .split-row__media { order: 2; }
.split-row--reverse .split-row__text { order: 1; }

/* Values grid */
.values {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  padding-top: clamp(48px, 8vh, 80px);
}

.value-item h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--forest);
  margin-bottom: 12px;
}

.value-item p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
}

/* Contact */
.contact-hero {
  padding-top: calc(var(--header-h) + clamp(48px, 8vh, 96px));
  padding-bottom: clamp(48px, 6vh, 72px);
  max-width: 1440px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
}

.contact-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px) clamp(80px, 12vh, 140px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-panel {
  padding: clamp(40px, 5vw, 64px);
  background: #fff;
  border: 1px solid var(--sand);
}

.contact-panel label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 8px;
}

.contact-panel input,
.contact-panel textarea {
  width: 100%;
  border: 1px solid var(--sand);
  background: var(--cream);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 15px;
  margin-bottom: 20px;
}

.contact-panel textarea { min-height: 140px; resize: vertical; }

.contact-detail {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.8;
  font-weight: 300;
}

.contact-detail a {
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
  transition: border-color 0.25s;
}

.contact-detail a:hover { border-color: var(--forest); }

.hours-block {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--sand);
}

.hours-block dt {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin-top: 16px;
}

.hours-block dd {
  font-size: 1.1rem;
  font-weight: 300;
  margin-top: 4px;
}

/* Footer */
.site-footer {
  background: var(--forest);
  color: rgba(248, 244, 237, 0.88);
  padding: clamp(56px, 8vh, 88px) clamp(20px, 5vw, 64px) 32px;
}

.footer-top {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(248, 244, 237, 0.15);
}

.footer-top .logo img {
  height: 36px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-nav {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-nav a {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  opacity: 0.75;
  transition: opacity 0.25s;
}

.footer-nav a:hover { opacity: 1; }

.footer-bottom {
  max-width: 1440px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  opacity: 0.6;
}

/* Page hero (inner pages) */
.page-hero {
  margin-top: var(--header-h);
  min-height: clamp(55vh, 65vh, 75vh);
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(248, 244, 237, 0.92) 100%);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(48px, 8vh, 96px) clamp(20px, 5vw, 64px);
}

@media (max-width: 960px) {
  .story-home,
  .split-row,
  .contact-grid,
  .values { grid-template-columns: 1fr; }
  .split-row--reverse .split-row__media { order: 0; }
  .nav-main, .header-actions .btn-reservation, .header-actions .lang-switch { display: none; }
  .menu-toggle { display: block; }
  .nav-open .nav-main {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 24px;
    border-bottom: 1px solid var(--sand);
  }
  .header-inner { flex-wrap: wrap; position: relative; }
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.28);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* Map embed */
.map-embed {
  width: 100%;
  border: 0;
  display: block;
  margin-top: 40px;
  border-radius: 4px;
}

/* Contact info block (no form) */
.contact-info-block {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(40px,6vw,80px) clamp(20px,5vw,64px);
}
