:root {
  --ink: #17211c;
  --muted: #62706a;
  --line: #dde5df;
  --paper: #fbfaf6;
  --white: #fff;
  --sage: #2e6f5c;
  --sage-dark: #194c40;
  --gold: #c89446;
  --sea: #2e87a8;
  --shadow: 0 22px 70px rgba(23, 33, 28, .12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; object-fit: cover; }
.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  min-height: 100svh;
  color: white;
  background:
    radial-gradient(circle at 50% 46%, rgba(201,148,70,.22), transparent 18%),
    radial-gradient(circle at 72% 80%, rgba(46,111,92,.26), transparent 32%),
    linear-gradient(145deg, #06100d, #121a24 52%, #19372f);
  overflow: hidden;
  transition: opacity .6s ease, visibility .6s ease;
  animation: siteLoaderMove 4.5s ease-in-out infinite alternate;
}
.site-preloader.hide { opacity: 0; visibility: hidden; }
.site-preloader-bg {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 50% 48%, rgba(255,255,255,.06), transparent 24%),
    radial-gradient(circle at 50% 48%, rgba(201,148,70,.11), transparent 34%);
  animation: siteGlow 4.5s ease-in-out infinite alternate;
  pointer-events: none;
}
.site-preloader-card {
  position: relative;
  z-index: 1;
  width: min(520px, 88vw);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 16px;
  transform: translateY(-1vh);
}
.site-preloader-card img {
  width: min(360px, 78vw);
  max-height: 150px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  image-rendering: auto;
  filter: drop-shadow(0 18px 42px rgba(0,0,0,.34));
  animation: logoBreath 2.6s ease-in-out infinite;
}
.site-preloader-card h2 {
  margin: 10px 0 0;
  font-size: 24px;
}
.site-preloader-line {
  width: 220px;
  height: 5px;
  border-radius: 99px;
  background: rgba(255,255,255,.18);
  overflow: hidden;
}
.site-preloader-line span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), #fff5c9, var(--sage));
  animation: siteLoadingFill 3s ease forwards;
}
.site-preloader-card p {
  margin: 0;
  max-width: 280px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
}
@keyframes siteLoaderMove {
  from { background-position: 0 0; }
  to { background-position: 18px -24px; }
}
@keyframes siteGlow {
  from { transform: scale(1); opacity: .66; }
  to { transform: scale(1.08); opacity: .92; }
}
@keyframes logoBreath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}
@keyframes siteLoadingFill {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 246, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(221, 229, 223, .85);
}
.topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px clamp(18px, 4vw, 56px);
  font-size: 13px;
  color: var(--muted);
  background: #eef4ef;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--sage);
  color: white;
  font-weight: 800;
}
.brand-logo {
  width: 128px;
  height: 74px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: -2px; }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 650; }
.nav-cta, .btn.primary, .footer-btn, .stay-card a, .contact-panel button, .booking-card button {
  background: var(--sage);
  color: white;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 750;
  border: 0;
  cursor: pointer;
}
.menu-toggle { display: none; background: transparent; border: 0; font-size: 28px; }

.hero-slider {
  min-height: calc(100vh - 95px);
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: end;
  gap: 34px;
  padding: clamp(70px, 8vw, 120px) clamp(18px, 4vw, 56px) 48px;
  background:
    linear-gradient(90deg, rgba(10, 24, 19, .80), rgba(10, 24, 19, .30)),
    var(--hero) center/cover;
  color: white;
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s ease;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide.mobile-only { display: none; }
.hero-content { max-width: 780px; }
.eyebrow, .section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
}
.hero h1 {
  margin: 0;
  font-size: clamp(46px, 7vw, 94px);
  line-height: .96;
  max-width: 900px;
}
.hero p { font-size: 18px; max-width: 640px; color: rgba(255,255,255,.86); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; }
.btn.ghost { border: 1px solid rgba(255,255,255,.55); color: white; border-radius: 8px; padding: 12px 18px; font-weight: 750; }
.btn.call { background: var(--gold); color: #111b17; }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 42px; }
.hero-stats span {
  padding: 15px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.10);
  border-radius: 8px;
}
.hero-stats strong { display: block; font-size: 22px; }
.slider-dots {
  position: absolute;
  left: clamp(18px, 4vw, 56px);
  bottom: 18px;
  display: flex;
  gap: 8px;
  z-index: 5;
}
.slider-dots button {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 99px;
  background: rgba(255,255,255,.45);
  cursor: pointer;
}
.slider-dots button.active { background: white; }

.booking-card, .contact-panel {
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.booking-card {
  position: relative;
  z-index: 4;
  justify-self: end;
  align-self: end;
  margin: 0 clamp(18px, 4vw, 56px) 48px 0;
  width: min(380px, calc(100vw - 36px));
}
.booking-card h2, .contact-panel h2 { margin-top: 0; }
label { display: grid; gap: 7px; color: var(--muted); font-size: 14px; font-weight: 650; margin-bottom: 14px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 46px;
  padding: 11px 12px;
  font: inherit;
  background: white;
}
textarea { min-height: 120px; resize: vertical; }

.section { padding: clamp(58px, 7vw, 96px) clamp(18px, 4vw, 56px); }
.muted { background: #eef4ef; }
.intro-grid, .split, .detail-grid, .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.section h2, .page-hero h1 { font-size: clamp(32px, 4.4vw, 58px); line-height: 1.05; margin: 0 0 18px; }
.feature-list { display: grid; gap: 14px; }
.feature-list article, .place-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}
.feature-list span { color: var(--gold); font-weight: 900; }
.feature-list h3, .place-grid h3 { margin: 5px 0; }
.section-head { display: flex; justify-content: space-between; gap: 18px; align-items: end; margin-bottom: 28px; }
.section-head a { color: var(--sage); font-weight: 800; }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.stay-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 38px rgba(23,33,28,.08);
}
.stay-card img { width: 100%; height: 260px; }
.stay-card div { padding: 22px; }
.stay-card span, .blog-card span, .article span { color: var(--sea); font-size: 12px; font-weight: 850; text-transform: uppercase; }
.stay-card h3 { margin: 8px 0; font-size: 24px; }
.stay-card ul { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 18px 0; }
.stay-card li, .detail-facts span, .amenities span {
  background: #eef4ef;
  color: var(--sage-dark);
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 750;
}
.stay-card a { display: inline-flex; }

.visual-panel {
  min-height: 460px;
  border-radius: 8px;
  background: url('https://images.unsplash.com/photo-1533105079780-92b9be482077?auto=format&fit=crop&w=1200&q=80') center/cover;
  box-shadow: var(--shadow);
}
.blog-row, .place-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.blog-card {
  display: block;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}
.blog-card img { height: 230px; width: 100%; border-radius: 6px; margin-bottom: 16px; }
.blog-card h3, .blog-card h2 { margin: 8px 0; line-height: 1.18; }
.faq-section {
  background:
    linear-gradient(180deg, rgba(238,244,239,.78), rgba(251,250,246,1));
}
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23,33,28,.06);
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}
.faq-item button strong {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eef4ef;
  color: var(--sage-dark);
  font-size: 22px;
  line-height: 1;
}
.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
}
.faq-answer p {
  margin: 0;
  max-width: 820px;
}
.faq-item.open {
  border-color: rgba(46,111,92,.32);
}
.faq-item.open button strong {
  background: var(--sage);
  color: white;
}
.faq-item.open .faq-answer {
  display: block;
}

.page-hero {
  padding: 90px clamp(18px, 4vw, 56px) 54px;
  background: linear-gradient(120deg, #f7f4ec, #e7f0ed);
}
.page-hero p { max-width: 720px; color: var(--muted); font-size: 18px; }
.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
  gap: 40px;
  align-items: center;
  padding: 54px clamp(18px, 4vw, 56px);
  background: #eef4ef;
}
.detail-hero img { height: 560px; width: 100%; border-radius: 8px; box-shadow: var(--shadow); }
.detail-hero h1 { font-size: clamp(38px, 5vw, 70px); line-height: 1; margin: 0 0 18px; }
.detail-facts, .amenities { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.gallery img { height: 260px; width: 100%; border-radius: 8px; aspect-ratio: 4 / 3; }
.content-page { max-width: 1050px; margin: 0 auto; font-size: 19px; }
.article { max-width: 920px; margin: 0 auto; padding: 58px 18px 90px; }
.article > img { width: 100%; height: 440px; border-radius: 8px; margin-bottom: 24px; }
.article h1 { font-size: clamp(34px, 5vw, 64px); line-height: 1.05; }
.blog-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.contact-info {
  background: var(--sage-dark);
  color: white;
  border-radius: 8px;
  padding: 34px;
}
.contact-info a { display: table; margin: 12px 0; }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.contact-info .contact-actions a {
  display: inline-flex;
  margin: 0;
  min-width: 153px;
  min-height: 46px;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 800;
}
.map-section {
  padding: 0 clamp(18px, 4vw, 56px) 76px;
}
.map-open {
  display: inline-flex;
  margin-bottom: 12px;
  background: var(--sage);
  color: white;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
}
.map-section iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.mobile-actionbar { display: none; }
.notice { background: #e5f6ea; color: #23613c; border: 1px solid #bde3c8; padding: 12px; border-radius: 8px; margin-bottom: 14px; }

.kvkk-consent, .campaign-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(10, 18, 15, .62);
  backdrop-filter: blur(16px);
}
.kvkk-consent[hidden], .campaign-popup[hidden] { display: none; }
.kvkk-card, .campaign-dialog {
  width: min(560px, 100%);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}
.kvkk-card {
  padding: clamp(24px, 5vw, 38px);
}
.kvkk-badge, .campaign-content span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.kvkk-card h2, .campaign-content h2 {
  margin: 10px 0 12px;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.05;
}
.kvkk-card p, .campaign-content p { color: var(--muted); }
.kvkk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.kvkk-actions button, .campaign-form button, .campaign-link {
  border: 0;
  border-radius: 8px;
  min-height: 46px;
  padding: 12px 16px;
  background: var(--sage);
  color: white;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}
.kvkk-actions .secondary {
  background: #eef4ef;
  color: var(--sage-dark);
}
.campaign-dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, .88fr) minmax(0, 1.12fr);
  overflow: hidden;
  width: min(860px, 100%);
}
.campaign-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(17,27,23,.86);
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.campaign-image {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}
.campaign-content {
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  align-content: center;
}
.campaign-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin: 6px 0 16px;
}
.campaign-form {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.campaign-form label { margin: 0; }
.campaign-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12px;
  line-height: 1.45;
}
.campaign-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}
.campaign-form [data-campaign-result] {
  min-height: 20px;
  margin: 0;
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 750;
}

.site-footer { background: #111b17; color: rgba(255,255,255,.78); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr 1fr;
  gap: 28px;
  padding: 54px clamp(18px, 4vw, 56px);
}
.footer-grid h3, .footer-grid h4 { color: white; margin-top: 0; }
.footer-grid a { display: block; margin: 8px 0; }
.footer-btn { display: inline-block !important; margin-top: 10px !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 16px clamp(18px, 4vw, 56px); font-size: 13px; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    inset: 100% 18px auto 18px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: grid; }
  .hero-slide, .intro-grid, .split, .detail-grid, .contact-grid, .detail-hero { grid-template-columns: 1fr; }
  .booking-card { max-width: 520px; justify-self: start; margin-left: clamp(18px, 4vw, 56px); }
  .cards, .footer-grid, .blog-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .topbar { display: none; }
  .navbar { padding: 10px 22px; min-height: 102px; }
  .brand { min-width: 0; }
  .brand-logo { width: 172px; height: 86px; border-radius: 0; background: transparent; }
  .brand-mark { width: 76px; height: 76px; font-size: 22px; border-radius: 14px; }
  .brand small, .brand strong { display: none; }
  .menu-toggle { font-size: 34px; }
  .hero-slider { min-height: 780px; }
  .hero-slide {
    display: grid;
    background:
      linear-gradient(90deg, rgba(10, 24, 19, .80), rgba(10, 24, 19, .30)),
      var(--hero-mobile) center/cover;
    padding-top: 70px;
  }
  .hero-slide.desktop-only { display: none; }
  .hero-slide.mobile-only { display: grid; }
  .hero-stats, .cards, .blog-row, .place-grid, .gallery, .footer-grid, .blog-list { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
  .detail-hero img, .article > img { height: 320px; }
  body { padding-bottom: 74px; }
  .mobile-actionbar {
    position: fixed;
    z-index: 30;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 8px;
    border-radius: 18px;
    background: rgba(17,27,23,.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 40px rgba(0,0,0,.24);
  }
  .mobile-actionbar a {
    display: grid;
    place-items: center;
    min-height: 42px;
    border-radius: 12px;
    color: white;
    font-size: 12px;
    font-weight: 800;
    background: rgba(255,255,255,.10);
  }
  .map-section { padding-inline: 12px; padding-bottom: 88px; }
  .map-section iframe { height: 360px; border-radius: 18px; }
  .faq-item button {
    min-height: 58px;
    padding: 16px;
    font-size: 15px;
  }
  .faq-answer {
    padding: 0 16px 16px;
  }
  .kvkk-consent, .campaign-popup {
    align-items: end;
    padding: 10px;
  }
  .kvkk-card, .campaign-dialog {
    border-radius: 18px;
  }
  .campaign-dialog {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 94px);
    overflow-y: auto;
  }
  .campaign-image {
    min-height: 210px;
    height: 230px;
  }
  .campaign-content {
    padding: 22px;
  }
  .campaign-link, .campaign-form button {
    width: 100%;
  }
}
