/* Harbor Stay — butik otel / pansiyon. Liman laciverti + kum altını + deniz. BEM prefix: hs- */

:root {
  --hs-primary: #1B3A4B;
  --hs-accent: #D4A373;
  --hs-surface: #F8F5F2;
  --hs-ink: #14212B;
  --hs-sea: #4F7C8A;

  --hs-primary-dark: #102833;
  --hs-accent-dark: #B8844F;
  --hs-accent-soft: rgba(212, 163, 115, 0.18);
  --hs-accent-line: rgba(212, 163, 115, 0.45);
  --hs-sea-soft: rgba(79, 124, 138, 0.14);
  --hs-surface-alt: #FFFFFF;
  --hs-line: rgba(20, 33, 43, 0.1);
  --hs-muted: #5A6B75;
  --hs-shadow: 0 26px 60px rgba(27, 58, 75, 0.18);
  --hs-shadow-sm: 0 12px 28px rgba(27, 58, 75, 0.12);
  --hs-radius-lg: 1.75rem;
  --hs-radius: 1.15rem;
  --hs-radius-sm: 0.75rem;
  --hs-bar-h: 70px;

  --hs-font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --hs-font-body: "Figtree", -apple-system, BlinkMacSystemFont, sans-serif;

  --hs-reveal-y: 24px;
  --hs-reveal-duration: 0.75s;
  --hs-hero-step: 0.1s;
}

html[data-motion="low"] {
  --hs-reveal-y: 10px;
  --hs-reveal-duration: 0.4s;
  --hs-hero-step: 0.05s;
}

html[data-motion="high"] {
  --hs-reveal-y: 36px;
  --hs-reveal-duration: 1s;
  --hs-hero-step: 0.14s;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

.hs-body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--hs-font-body);
  color: var(--hs-ink);
  background: var(--hs-surface);
}

.hs-body a { color: inherit; }

.hs-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--hs-primary);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 200;
  border-radius: 0 0 0.6rem 0;
}
.hs-skip:focus { left: 0.5rem; top: 0.5rem; }

.hs-kicker {
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hs-accent);
}

.hs-text-accent { color: var(--hs-accent); font-style: italic; }

/* ---------- Buttons ---------- */

.hs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--hs-font-body);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
  position: relative;
}

.hs-btn--primary {
  background: linear-gradient(135deg, var(--hs-primary) 0%, var(--hs-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(44, 24, 16, 0.35);
}
.hs-btn--primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 18px 34px rgba(44, 24, 16, 0.42); }

.hs-btn--accent {
  background: linear-gradient(135deg, var(--hs-accent) 0%, var(--hs-accent-dark) 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(232, 93, 4, 0.35);
}
.hs-btn--accent:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 18px 34px rgba(232, 93, 4, 0.45); }

.hs-btn--ghost {
  background: var(--hs-surface-alt);
  border-color: var(--hs-line);
  color: var(--hs-primary);
}
.hs-btn--ghost:hover { border-color: var(--hs-accent); color: var(--hs-accent-dark); transform: translateY(-2px); }

.hs-btn--ghost-light {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}
.hs-btn--ghost-light:hover { background: rgba(255, 255, 255, 0.22); transform: translateY(-2px); }

.hs-btn--outline {
  background: transparent;
  border-color: var(--hs-primary);
  color: var(--hs-primary);
}
.hs-btn--outline:hover { background: var(--hs-primary); color: #fff; }

.hs-btn--sm { padding: 0.7rem 1.3rem; font-size: 0.85rem; }

/* Pulse ring — draws attention to reservation CTAs */
.hs-pulse { position: relative; z-index: 1; }
.hs-pulse::before,
.hs-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--hs-accent);
  opacity: 0.5;
  z-index: -1;
  animation: hs-pulse-ring 2.6s cubic-bezier(0.2, 0.7, 0.4, 1) infinite;
}
.hs-pulse::after { animation-delay: 1.3s; }

/* ---------- Topbar ---------- */

.hs-topbar {
  background: var(--hs-primary);
  color: rgba(255, 248, 240, 0.88);
  font-size: 0.82rem;
}

.hs-topbar__inner {
  width: min(1220px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  flex-wrap: wrap;
}

.hs-topbar__contact { display: flex; gap: 1.25rem; flex-wrap: wrap; align-items: center; }

.hs-topbar__link,
.hs-topbar__hours {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  transition: opacity 0.2s ease;
}
.hs-topbar__link:hover { opacity: 0.8; }
.hs-topbar__link svg,
.hs-topbar__hours svg { width: 14px; height: 14px; flex-shrink: 0; }
.hs-topbar__hours { display: none; }
@media (min-width: 720px) { .hs-topbar__hours { display: inline-flex; } }

.hs-lang { display: flex; gap: 0.3rem; }
.hs-lang a {
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  color: rgba(255, 248, 240, 0.75);
  border: 1px solid transparent;
}
.hs-lang a.is-active { color: #fff; border-color: rgba(255, 255, 255, 0.55); background: rgba(255, 255, 255, 0.12); }

/* ---------- Header ---------- */

.hs-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 240, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hs-line);
}

.hs-header__inner {
  width: min(1220px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.1rem 0;
}

.hs-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  margin-right: auto;
}

.hs-brand__logo { height: 42px; width: auto; display: block; border-radius: 0.6rem; }

.hs-brand__text-wrap { display: flex; flex-direction: column; }

.hs-brand__text {
  font-family: var(--hs-font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--hs-primary);
}

.hs-brand__tagline {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--hs-muted);
  margin-top: 0.1rem;
  font-style: normal;
}

.hs-nav-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
  background: var(--hs-surface-alt);
  border: 1.5px solid var(--hs-line);
  border-radius: 999px;
  padding: 0.5rem 0.9rem 0.5rem 0.75rem;
  cursor: pointer;
  color: var(--hs-ink);
  font-family: var(--hs-font-body);
  position: relative;
  z-index: 2;
  order: 3;
  box-shadow: var(--hs-shadow-sm);
}
.hs-nav-toggle__bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 18px;
}
.hs-nav-toggle__bars span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease;
}
.hs-nav-toggle__label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hs-nav-toggle[aria-expanded="true"] {
  border-color: color-mix(in srgb, var(--hs-primary) 40%, #fff);
  color: #fff;
  background: var(--hs-primary);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--hs-primary) 35%, transparent);
}
.hs-nav-toggle[aria-expanded="true"] .hs-nav-toggle__bars span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.hs-nav-toggle[aria-expanded="true"] .hs-nav-toggle__bars span:nth-child(2) { opacity: 0; width: 0; }
.hs-nav-toggle[aria-expanded="true"] .hs-nav-toggle__bars span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.hs-nav-toggle[aria-expanded="true"] .hs-nav-toggle__label { display: none; }

.hs-nav--desktop { order: 2; }
.hs-nav--mobile,
.hs-nav-scrim { display: none; }

.hs-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.6rem;
  align-items: center;
  counter-reset: htnav;
}
.hs-nav__list .site-nav__item { position: relative; counter-increment: htnav; }

.hs-nav--desktop .site-nav__item > a {
  text-decoration: none;
  color: var(--hs-ink);
  font-size: 0.93rem;
  font-weight: 700;
  position: relative;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}
.hs-nav--desktop .site-nav__item:hover > a,
.hs-nav--desktop .site-nav__item.is-active > a { background: var(--hs-accent-soft); color: var(--hs-accent-dark); }

.hs-nav--desktop .has-children > a::after {
  content: "";
  display: inline-block;
  width: 5px; height: 5px;
  margin-left: 0.35rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.65;
  vertical-align: middle;
}
/* Dropdown hover gap bridge: üst padding boşluğu köprüler + kapanış gecikmesi */
.hs-nav--desktop .site-nav__sub {
  list-style: none;
  margin: 0;
  padding: 0.75rem 0.45rem 0.45rem;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 12rem;
  background: var(--hs-surface-alt, #fff);
  border: 1px solid var(--hs-line);
  border-radius: var(--hs-radius-sm, 12px);
  box-shadow: var(--hs-shadow-sm);
  display: grid;
  gap: 0.15rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  transition-delay: 0.2s;
  z-index: 40;
  pointer-events: none;
}
.hs-nav--desktop .has-children:hover > .site-nav__sub,
.hs-nav--desktop .has-children:focus-within > .site-nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0s;
}
.hs-nav--desktop .site-nav__sub .site-nav__item > a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--hs-ink);
  text-decoration: none;
}
.hs-nav--desktop .site-nav__sub .site-nav__item > a:hover {
  background: var(--hs-accent-soft);
  color: var(--hs-accent-dark);
}

.hs-header__cta { order: 4; flex-shrink: 0; }

.hs-lang--drawer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(5.5rem, 1fr));
  gap: 0.5rem;
  width: 100%;
  margin: 0 0 0.35rem;
}
.hs-lang--drawer a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  min-width: 0;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 248, 240, 0.16);
  color: rgba(255, 248, 240, 0.78);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.hs-lang--drawer a:hover { border-color: var(--hs-accent); color: #fff; }
.hs-lang--drawer a.is-active {
  border-color: var(--hs-accent);
  color: var(--hs-accent);
  background: color-mix(in srgb, var(--hs-accent) 16%, transparent);
}
.hs-lang__code { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; }
.hs-lang__name { font-size: 0.72rem; font-weight: 600; opacity: 0.85; text-transform: none; letter-spacing: 0; }

@media (max-width: 900px) {
  .hs-header { z-index: 50; }
  .hs-header__cta,
  .hs-nav--desktop { display: none; }
  .hs-nav-toggle { display: inline-flex; z-index: 120; flex-shrink: 0; }

  .hs-nav-scrim {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 110;
    background: color-mix(in srgb, var(--hs-ink) 60%, transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  .hs-nav-scrim.is-open { opacity: 1; visibility: visible; pointer-events: auto; }

  .hs-nav--mobile {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 115;
    width: 0;
    margin: 0;
    display: block;
    pointer-events: none;
    visibility: hidden;
    overflow: hidden;
  }
  .hs-nav--mobile.is-open {
    width: min(100%, 26rem);
    visibility: visible;
    pointer-events: auto;
    overflow: visible;
  }
  .hs-nav--mobile .hs-nav__panel {
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    background: linear-gradient(165deg, var(--hs-ink) 0%, #2C1810 48%, #150c08 100%);
    color: #FFF8F0;
    padding: clamp(1.5rem, 5vw, 2.25rem);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: none;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .hs-nav--mobile.is-open .hs-nav__panel {
    transform: translateX(0);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.4);
  }
  .hs-nav--mobile .hs-nav__mast,
  .hs-nav--mobile .hs-nav__foot,
  .hs-nav--mobile .hs-nav__close { display: flex; }
  .hs-nav--mobile .hs-nav__mast {
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
  }
  .hs-nav--mobile .hs-nav__eyebrow {
    margin: 0;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--hs-accent);
    font-weight: 800;
  }
  .hs-nav--mobile .hs-nav__close {
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: transparent;
    color: #FFF8F0;
    cursor: pointer;
    position: relative;
    padding: 0;
  }
  .hs-nav--mobile .hs-nav__close span,
  .hs-nav--mobile .hs-nav__close span::before {
    display: block;
    width: 14px;
    height: 1.5px;
    background: currentColor;
    border-radius: 1px;
  }
  .hs-nav--mobile .hs-nav__close span { transform: rotate(45deg); }
  .hs-nav--mobile .hs-nav__close span::before { content: ""; transform: rotate(90deg); }

  .hs-nav--mobile .hs-nav__list {
    flex: 1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.35rem 0;
  }
  .hs-nav--mobile .hs-nav__list > .site-nav__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(1.25rem);
    transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .hs-nav--mobile.is-open .hs-nav__list > .site-nav__item { opacity: 1; transform: translateX(0); }
  .hs-nav--mobile.is-open .hs-nav__list > .site-nav__item:nth-child(1) { transition-delay: 0.06s; }
  .hs-nav--mobile.is-open .hs-nav__list > .site-nav__item:nth-child(2) { transition-delay: 0.1s; }
  .hs-nav--mobile.is-open .hs-nav__list > .site-nav__item:nth-child(3) { transition-delay: 0.14s; }
  .hs-nav--mobile.is-open .hs-nav__list > .site-nav__item:nth-child(4) { transition-delay: 0.18s; }
  .hs-nav--mobile.is-open .hs-nav__list > .site-nav__item:nth-child(5) { transition-delay: 0.22s; }
  .hs-nav--mobile.is-open .hs-nav__list > .site-nav__item:nth-child(6) { transition-delay: 0.26s; }
  .hs-nav--mobile.is-open .hs-nav__list > .site-nav__item:nth-child(7) { transition-delay: 0.3s; }
  .hs-nav--mobile.is-open .hs-nav__list > .site-nav__item:nth-child(8) { transition-delay: 0.34s; }
  .hs-nav--mobile.is-open .hs-nav__list > .site-nav__item:nth-child(9) { transition-delay: 0.38s; }

  .hs-nav--mobile .hs-nav__list > .site-nav__item > a {
    display: grid;
    grid-template-columns: 2.4rem 1fr auto;
    align-items: center;
    gap: 0.85rem;
    padding: 1.15rem 0;
    font-family: var(--hs-font-display);
    font-style: italic;
    font-size: clamp(1.4rem, 5.5vw, 1.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: #FFF8F0;
    border-radius: 0;
    white-space: normal;
    text-decoration: none;
  }
  .hs-nav--mobile .hs-nav__list > .site-nav__item > a::before {
    content: counter(htnav, decimal-leading-zero);
    font-family: var(--hs-font-body);
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--hs-accent);
    opacity: 0.95;
  }
  .hs-nav--mobile .hs-nav__list > .site-nav__item > a:hover,
  .hs-nav--mobile .hs-nav__list > .site-nav__item.is-active > a { color: var(--hs-accent); }
  .hs-nav--mobile .hs-nav__list .has-children > a::after {
    content: "";
    display: inline-block;
    width: 7px; height: 7px;
    border-right: 1.5px solid rgba(255, 255, 255, 0.55);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.55);
    transform: rotate(45deg);
    justify-self: end;
    opacity: 1;
  }
  .hs-nav--mobile .hs-nav__list .site-nav__item.is-open > a::after {
    transform: rotate(-135deg);
    border-color: var(--hs-accent);
  }
  .hs-nav--mobile .hs-nav__list .site-nav__sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0 0 1rem 2.4rem;
    min-width: auto;
    display: none;
    pointer-events: auto;
    transition: none;
  }
  .hs-nav--mobile .hs-nav__list .site-nav__item.is-open > .site-nav__sub { display: block; }
  .hs-nav--mobile .hs-nav__list .site-nav__sub .site-nav__item > a {
    padding: 0.6rem 0;
    font-family: var(--hs-font-body);
    font-style: normal;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 248, 240, 0.78);
    border-radius: 0;
    display: block;
    text-decoration: none;
  }
  .hs-nav--mobile .hs-nav__list .site-nav__sub .site-nav__item > a:hover {
    background: transparent;
    color: var(--hs-accent);
  }
  .hs-nav--mobile .hs-nav__list .site-nav__sub .site-nav__item > a::before { content: none; }

  .hs-nav--mobile .hs-nav__foot {
    margin-top: auto;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
  }
  .hs-nav--mobile .hs-nav__cta { width: 100%; justify-content: center; }
  .hs-nav--mobile .hs-nav__meta {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.9rem;
  }
  .hs-nav--mobile .hs-nav__meta a { color: rgba(255, 248, 240, 0.72); text-decoration: none; }
  .hs-nav--mobile .hs-nav__meta a:hover { color: var(--hs-accent); }

  body.hs-nav-open { overflow: hidden; }

  @media (prefers-reduced-motion: reduce) {
    .hs-nav--mobile .hs-nav__panel,
    .hs-nav-scrim,
    .hs-nav--mobile .hs-nav__list > .site-nav__item { transition: none; }
    .hs-nav--mobile.is-open .hs-nav__list > .site-nav__item { transition-delay: 0s; }
  }
}

/* ---------- Layout shell ---------- */

.hs-main { flex: 1; }

.hs-section {
  width: min(1220px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.hs-section--alt { background: var(--hs-surface-alt); width: 100%; }
.hs-section--alt > * { width: min(1220px, calc(100% - 2.5rem)); margin-left: auto; margin-right: auto; }

.hs-section__head {
  max-width: 40rem;
  margin: 0 0 2.5rem;
}

.hs-section__head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: none;
}

.hs-section__title {
  margin: 0;
  font-family: var(--hs-font-display);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  color: var(--hs-ink);
}

.hs-section__text {
  margin: 0.85rem 0 0;
  color: var(--hs-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hs-section__cta { text-align: center; margin-top: 2.5rem; }

/* ---------- Hero (full-bleed) ---------- */

.hs-hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  color: #fff;
}

.hs-hero__slide {
  position: relative;
  width: 100%;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hs-hero__slide[hidden] { display: none !important; }

.hs-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hs-hero__img,
.hs-hero__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08) translateY(0);
  transition: transform 0.6s ease;
}
.hs-hero__placeholder { background: linear-gradient(150deg, var(--hs-primary), var(--hs-accent-dark)); }
.hs-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 20, 16, 0.55) 0%, rgba(28, 20, 16, 0.35) 45%, rgba(28, 20, 16, 0.78) 100%);
}

.hs-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(6rem, 14vw, 9rem) 0 clamp(5rem, 10vw, 7rem);
}

.hs-hero__content { max-width: 40rem; }

.hs-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.1rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  background: rgba(232, 93, 4, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  opacity: 0;
  animation: hs-fade-up 0.7s ease forwards;
  animation-delay: 0.05s;
}

.hs-hero__title {
  margin: 0;
  font-family: var(--hs-font-display);
  font-style: italic;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: #fff;
}

.hs-hero__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(var(--hs-reveal-y));
  animation: hs-fade-up var(--hs-reveal-duration) cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hs-hero__word--accent { color: var(--hs-accent); }

.hs-hero__text {
  margin: 1.4rem 0 0;
  max-width: 32rem;
  color: rgba(255, 248, 240, 0.88);
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 500;
  opacity: 0;
  animation: hs-fade-up 0.8s ease forwards;
}

.hs-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2.25rem;
  opacity: 0;
  animation: hs-fade-up 0.8s ease forwards;
}

.hs-hero__badge {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 248, 240, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: var(--hs-radius);
  padding: 0.9rem 1.4rem;
  color: #fff;
}
.hs-hero__badge svg { width: 24px; height: 24px; color: var(--hs-accent); flex-shrink: 0; }
.hs-hero__badge strong { display: block; font-family: var(--hs-font-display); font-style: italic; font-size: 1.25rem; line-height: 1; }
.hs-hero__badge span span { font-size: 0.76rem; color: rgba(255, 248, 240, 0.8); }

.hs-hero__controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: min(1220px, calc(100% - 2.5rem));
  justify-content: flex-end;
  pointer-events: none;
}
.hs-hero__controls > * { pointer-events: auto; }
.hs-hero__nav {
  width: 2.4rem; height: 2.4rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0;
  backdrop-filter: blur(6px);
}
.hs-hero__nav:hover { border-color: var(--hs-accent); color: var(--hs-accent); }
.hs-hero__dots { display: flex; gap: 0.35rem; align-items: center; }
.hs-hero__dot {
  width: 0.5rem; height: 0.5rem; border-radius: 999px;
  border: 0; padding: 0; cursor: pointer;
  background: rgba(255, 255, 255, 0.4);
}
.hs-hero__dot.is-active { background: var(--hs-accent); width: 1.15rem; }

/* ---------- Scroll reveal ---------- */

.hs-reveal {
  opacity: 0;
  transform: translateY(var(--hs-reveal-y));
  transition: opacity var(--hs-reveal-duration) cubic-bezier(0.16, 1, 0.3, 1), transform var(--hs-reveal-duration) cubic-bezier(0.16, 1, 0.3, 1);
}
.hs-reveal.is-inview { opacity: 1; transform: none; }

/* ---------- About / Hikayemiz ---------- */

.hs-about {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hs-about { grid-template-columns: 0.85fr 1.15fr; }
}

.hs-about__figure { position: relative; }

.hs-about__img,
.hs-about__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--hs-radius-lg);
  box-shadow: var(--hs-shadow-sm);
}

.hs-about__placeholder { background: linear-gradient(150deg, var(--hs-accent-soft), var(--hs-sea-soft)); }

.hs-about__ring {
  position: absolute;
  inset: -1rem;
  border: 2px dashed var(--hs-accent-line);
  border-radius: var(--hs-radius-lg);
  z-index: -1;
}

.hs-about__title {
  margin: 0;
  font-family: var(--hs-font-display);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  color: var(--hs-ink);
  line-height: 1.25;
}

.hs-about__text {
  margin: 1.1rem 0 0;
  color: var(--hs-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.hs-about__list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.hs-about__list li {
  position: relative;
  padding-left: 2rem;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--hs-ink);
}

.hs-about__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--hs-accent-soft);
  border: 1px solid var(--hs-accent-line);
}

.hs-about__list li::after {
  content: "";
  position: absolute;
  left: 0.42rem;
  top: 0.44rem;
  width: 0.55rem;
  height: 0.32rem;
  border-left: 2px solid var(--hs-accent-dark);
  border-bottom: 2px solid var(--hs-accent-dark);
  transform: rotate(-45deg);
}

/* ---------- Menu / dish cards (mask reveal) ---------- */

.hs-room__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
}

.hs-room {
  display: flex;
  flex-direction: column;
  background: var(--hs-surface-alt);
  border-radius: var(--hs-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--hs-shadow-sm);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.hs-room:hover { transform: translateY(-6px); box-shadow: var(--hs-shadow); }

.hs-room__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(140deg, var(--hs-accent-soft), var(--hs-sea-soft));
}

.hs-room__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hs-room:hover .hs-room__img { transform: scale(1.08); }

.hs-room__placeholder { width: 100%; height: 100%; }

/* Mask reveal: krem panel scroll'da kartın önünden sıyrılır */
.hs-room__mask {
  position: absolute;
  inset: 0;
  background: var(--hs-surface);
  transform-origin: left center;
  transform: scaleX(1);
  transition: transform 0.85s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 2;
}
.hs-room.is-inview .hs-room__mask,
.hs-reveal.is-inview .hs-room__mask { transform: scaleX(0); }

.hs-room__tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 3;
  background: var(--hs-sea);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.hs-room__soldout {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  background: rgba(28, 20, 16, 0.82);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.hs-room__soldout--lg { font-size: 0.8rem; padding: 0.45rem 1rem; top: 1rem; right: 1rem; position: absolute; }

.hs-room__body {
  padding: 1.3rem 1.4rem 1.5rem;
  display: grid;
  gap: 0.5rem;
  flex: 1;
}

.hs-room__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.hs-room__title {
  margin: 0;
  font-family: var(--hs-font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.005em;
  color: var(--hs-ink);
}

.hs-room__price {
  flex-shrink: 0;
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--hs-accent-dark);
  white-space: nowrap;
}

.hs-room__text {
  margin: 0;
  color: var(--hs-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  flex: 1;
}

/* ---------- Differentiators ---------- */

.hs-features {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.hs-feature {
  padding: 1.85rem 1.6rem;
  border-radius: var(--hs-radius);
  background: var(--hs-surface-alt);
  box-shadow: var(--hs-shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hs-feature:hover { transform: translateY(-4px); box-shadow: var(--hs-shadow); }

.hs-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: var(--hs-accent-soft);
  color: var(--hs-accent-dark);
  margin-bottom: 1.1rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hs-feature__icon svg { width: 24px; height: 24px; }

.hs-feature:hover .hs-feature__icon { transform: translateY(-6px) rotate(-6deg); }

.hs-feature__title {
  margin: 0 0 0.5rem;
  font-family: var(--hs-font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--hs-ink);
}

.hs-feature__text {
  margin: 0;
  color: var(--hs-muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ---------- Gallery strip (home) + grid (list) ---------- */

.hs-news__strip {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}
.hs-news__strip .hs-news__item {
  flex: 0 0 auto;
  width: min(320px, 78vw);
  scroll-snap-align: start;
}

.hs-news__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.hs-news__item {
  margin: 0;
  border-radius: var(--hs-radius);
  overflow: hidden;
  box-shadow: var(--hs-shadow-sm);
  background: var(--hs-surface-alt);
  position: relative;
}

.hs-news__img,
.hs-news__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hs-news__placeholder { background: linear-gradient(140deg, var(--hs-accent-soft), var(--hs-sea-soft)); }
.hs-news__item:hover .hs-news__img { transform: scale(1.06); }

.hs-news__video { position: relative; display: block; }
.hs-news__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(28, 20, 16, 0.32);
}
.hs-news__play svg { width: 3rem; height: 3rem; filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.4)); }

.hs-news__caption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--hs-muted);
}

/* ---------- Stats bar ---------- */

.hs-stats {
  padding: clamp(2.75rem, 6vw, 4rem) 0;
  color: #fff;
  background: linear-gradient(135deg, var(--hs-primary) 0%, var(--hs-primary-dark) 100%);
}

.hs-stats__grid {
  width: min(1220px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  text-align: center;
}

.hs-stats__item { display: flex; flex-direction: column; gap: 0.35rem; }

.hs-stats__value {
  font-family: var(--hs-font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.1rem, 4.2vw, 3rem);
  color: var(--hs-accent);
  line-height: 1;
}

.hs-stats__label {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: rgba(255, 248, 240, 0.78);
  font-weight: 600;
}

/* ---------- Mission / Şefin Notu (about) ---------- */

.hs-mission {
  width: min(880px, calc(100% - 2.5rem));
  margin: 0 auto;
  text-align: center;
  padding-top: 0;
}
.hs-mission__quote {
  margin: 0.5rem 0 1.25rem;
  font-family: var(--hs-font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--hs-ink);
  line-height: 1.35;
}
.hs-mission__text {
  margin: 0;
  color: var(--hs-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ---------- Timeline (about) ---------- */

.hs-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.hs-timeline__item {
  border-left: 3px solid var(--hs-accent);
  padding-left: 1.25rem;
}
.hs-timeline__year {
  display: inline-block;
  font-family: var(--hs-font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--hs-accent-dark);
  margin-bottom: 0.4rem;
}
.hs-timeline__title { margin: 0 0 0.4rem; font-weight: 800; color: var(--hs-ink); }
.hs-timeline__text { margin: 0; color: var(--hs-muted); font-size: 0.92rem; line-height: 1.6; }

/* ---------- CTA band (saatler + rezervasyon) ---------- */

.hs-cta {
  background: linear-gradient(135deg, var(--hs-primary) 0%, var(--hs-primary-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: var(--hs-radius-lg);
  width: min(1220px, calc(100% - 2.5rem));
  margin: 0 auto clamp(3rem, 7vw, 5rem);
}

.hs-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(650px 320px at 85% 15%, rgba(232, 93, 4, 0.28), transparent 60%);
}

.hs-cta__inner {
  position: relative;
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 860px) {
  .hs-cta__inner { grid-template-columns: auto 1fr auto; }
}
.hs-cta__inner--sm {
  width: min(900px, calc(100% - 2.5rem));
  text-align: center;
  grid-template-columns: 1fr;
  justify-items: center;
}

.hs-cta__hours {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.92rem;
}
.hs-cta__hours svg { width: 28px; height: 28px; color: var(--hs-accent); flex-shrink: 0; }
.hs-cta__hours p { margin: 0.1rem 0; color: rgba(255, 248, 240, 0.85); }

.hs-cta__title {
  margin: 0;
  font-family: var(--hs-font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.hs-cta__desc {
  margin: 0.6rem 0 0;
  color: rgba(255, 248, 240, 0.82);
  line-height: 1.6;
  max-width: 30rem;
}

.hs-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ---------- Page head (list/detail/contact/about) ---------- */

.hs-page-head {
  background: linear-gradient(135deg, var(--hs-primary) 0%, var(--hs-primary-dark) 100%);
  color: #fff;
}

.hs-page-head__inner {
  width: min(1220px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(2.75rem, 6vw, 4rem) 0 clamp(2.25rem, 5vw, 3rem);
}

.hs-page-head__title {
  margin: 0.4rem 0 0;
  font-family: var(--hs-font-display);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}

.hs-page-head__tag {
  margin: 0.6rem 0 0;
  font-size: 0.9rem;
  color: rgba(255, 248, 240, 0.75);
  font-weight: 600;
}

.hs-page-head .hs-kicker { color: var(--hs-accent); }

.hs-breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 248, 240, 0.68);
  text-decoration: none;
}
.hs-breadcrumb:hover { color: var(--hs-accent); }

.hs-empty {
  padding: 2.5rem;
  text-align: center;
  border: 2px dashed var(--hs-line);
  border-radius: var(--hs-radius);
  color: var(--hs-muted);
  background: rgba(255, 255, 255, 0.5);
}

/* ---------- Detail / prose ---------- */

.hs-detail { width: min(880px, calc(100% - 2.5rem)); margin: 0 auto; padding: clamp(2.5rem, 6vw, 4rem) 0; }
.hs-detail--dish { width: min(760px, calc(100% - 2.5rem)); }

.hs-cover { position: relative; margin: 0 0 2rem; border-radius: var(--hs-radius-lg); overflow: hidden; box-shadow: var(--hs-shadow-sm); }
.hs-cover img { display: block; width: 100%; height: auto; }

.hs-detail__price {
  display: inline-flex;
  font-family: var(--hs-font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--hs-accent-dark);
  margin-bottom: 1rem;
}

.hs-summary { font-size: 1.1rem; color: var(--hs-muted); line-height: 1.7; margin: 0 0 1.75rem; }

.hs-prose { max-width: 46rem; line-height: 1.8; color: var(--hs-ink); font-size: 1.02rem; }
.hs-prose p { margin: 0 0 1.2rem; }
.hs-prose h5, .hs-prose h4, .hs-prose h3 { font-family: var(--hs-font-display); font-style: italic; color: var(--hs-accent-dark); margin: 1.75rem 0 0.75rem; }
.hs-prose ul { padding-left: 1.3rem; }
.hs-prose li { margin-bottom: 0.5rem; }
.hs-prose img { max-width: 100%; height: auto; border-radius: var(--hs-radius-sm); }

.hs-detail__features { margin-top: 2rem; }
.hs-detail__features h3 { font-family: var(--hs-font-display); font-style: italic; color: var(--hs-ink); margin: 0 0 1rem; }
.hs-detail__features-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.65rem; }
.hs-detail__features-list li { display: flex; align-items: center; gap: 0.65rem; font-size: 0.95rem; color: var(--hs-ink); }
.hs-detail__features-list svg { width: 18px; height: 18px; color: var(--hs-sea); flex-shrink: 0; }

.hs-detail__gallery {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.hs-detail__gallery-img { display: block; width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--hs-radius-sm); }

.hs-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--hs-accent-dark);
  margin-bottom: 1.5rem;
}
.hs-back:hover { color: var(--hs-primary); }

/* ---------- Contact ---------- */

.hs-contact {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .hs-contact { grid-template-columns: 0.85fr 1.15fr; }
}

.hs-contact__box {
  background: var(--hs-surface-alt);
  border-radius: var(--hs-radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--hs-shadow-sm);
}

.hs-contact__box h2 {
  margin: 0 0 1.1rem;
  font-family: var(--hs-font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--hs-ink);
}

.hs-contact__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.hs-contact__list li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.95rem; color: var(--hs-ink); }
.hs-contact__list svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--hs-accent-dark); margin-top: 0.15rem; }

.hs-form { display: grid; gap: 1rem; position: relative; }
.hs-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; margin: 0; opacity: 0; }

.hs-field-row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 480px) { .hs-field-row { grid-template-columns: 1fr; } }

.hs-field { display: grid; gap: 0.4rem; }
.hs-field label { font-size: 0.85rem; font-weight: 700; color: var(--hs-ink); }

.hs-captcha {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0.55rem;
  align-items: center;
}
.hs-captcha img {
  display: block;
  border-radius: var(--hs-radius-sm, 10px);
  border: 1.5px solid var(--hs-line);
  background: #fff;
}
.hs-captcha__refresh {
  width: 2.5rem; height: 2.5rem;
  border-radius: var(--hs-radius-sm, 10px);
  border: 1.5px solid var(--hs-line);
  background: var(--hs-surface-alt, #fff);
  color: var(--hs-ink);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0;
}
.hs-captcha__refresh:hover { border-color: var(--hs-accent); color: var(--hs-accent-dark); }
.hs-captcha__refresh.is-spin svg { animation: hs-spin 0.6s linear; }
@keyframes hs-spin { to { transform: rotate(360deg); } }
@media (max-width: 560px) {
  .hs-captcha { grid-template-columns: auto auto; }
  .hs-captcha .hs-input { grid-column: 1 / -1; }
}

.hs-input,
.hs-textarea {
  width: 100%;
  border: 1.5px solid var(--hs-line);
  border-radius: var(--hs-radius-sm);
  background: var(--hs-surface);
  padding: 0.85rem 1.1rem;
  font-family: var(--hs-font-body);
  font-size: 0.96rem;
  color: var(--hs-ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.hs-input:focus,
.hs-textarea:focus {
  outline: none;
  border-color: var(--hs-accent);
  box-shadow: 0 0 0 4px var(--hs-accent-soft);
}

.hs-textarea { resize: vertical; min-height: 8.5rem; }

.hs-alert {
  padding: 0.95rem 1.15rem;
  border-radius: var(--hs-radius-sm);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}
.hs-alert--ok { background: var(--hs-sea-soft); color: #1f3524; border: 1px solid rgba(58, 90, 64, 0.4); }
.hs-alert--error { background: var(--hs-accent-soft); color: #7a3300; border: 1px solid rgba(232, 93, 4, 0.35); }

/* ---------- Footer ---------- */

.hs-footer { margin-top: auto; background: var(--hs-primary); color: rgba(255, 248, 240, 0.8); }

.hs-footer__top { width: min(1220px, calc(100% - 2.5rem)); margin: 0 auto; padding: clamp(3rem, 6vw, 4.5rem) 0 2.5rem; }

.hs-footer__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.hs-footer__brand {
  display: inline-block;
  font-family: var(--hs-font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.85rem;
}

.hs-footer__text { margin: 0; font-size: 0.9rem; line-height: 1.7; color: rgba(255, 248, 240, 0.62); white-space: pre-line; }

.hs-footer__title {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hs-accent);
}

.hs-footer .site-nav__item { margin-bottom: 0.65rem; list-style: none; }
.hs-footer .site-nav__sub { list-style: none; padding-left: 1rem; margin: 0.4rem 0 0; }
.hs-footer__links { list-style: none; margin: 0; padding: 0; }
.hs-footer__links a {
  text-decoration: none;
  color: rgba(255, 248, 240, 0.72);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.hs-footer__links a:hover { color: var(--hs-accent); }

.hs-footer__hours p { margin: 0 0 0.4rem; font-size: 0.92rem; color: rgba(255, 248, 240, 0.62); }
.hs-footer__hours strong { color: rgba(255, 248, 240, 0.9); }

.hs-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  width: min(1220px, calc(100% - 2.5rem));
  margin-left: auto;
  margin-right: auto;
}
.hs-footer__bottom p {
  margin: 0;
  font-size: 0.83rem;
  color: rgba(255, 248, 240, 0.48);
  width: auto;
}
.hs-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}
.hs-footer__legal a {
  font-size: 0.8rem;
  color: rgba(255, 248, 240, 0.55);
  text-decoration: none;
}
.hs-footer__legal a:hover { color: var(--hs-accent); }

/* ---------- Sticky mobile reservation chip ---------- */

.hs-chip {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1rem;
  background: var(--hs-surface-alt);
  box-shadow: 0 -12px 30px rgba(44, 24, 16, 0.2);
  border-top: 1px solid var(--hs-line);
  animation: hs-chip-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

@media (max-width: 768px) {
  .hs-chip.is-enabled { display: flex; }
  .hs-body { padding-bottom: var(--hs-bar-h); }
}

.hs-chip__call {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hs-accent-soft);
  color: var(--hs-accent-dark);
  text-decoration: none;
}
.hs-chip__call svg { width: 20px; height: 20px; }

.hs-chip__btn { flex: 1; text-align: center; }

/* ---------- Reduced motion / motion-off ---------- */

.hs-motion-off .hs-hero__word,
.hs-motion-off .hs-hero__eyebrow,
.hs-motion-off .hs-hero__text,
.hs-motion-off .hs-hero__actions,
.hs-motion-off .hs-hero__img,
.hs-motion-off .hs-reveal,
.hs-motion-off .hs-room__mask,
.hs-motion-off .hs-chip,
.hs-motion-off .hs-pulse::before,
.hs-motion-off .hs-pulse::after {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}
.hs-motion-off .hs-room__mask { transform: scaleX(0) !important; }
.hs-motion-off .hs-pulse::before,
.hs-motion-off .hs-pulse::after { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  .hs-hero__word,
  .hs-hero__eyebrow,
  .hs-hero__text,
  .hs-hero__actions,
  .hs-hero__img,
  .hs-reveal,
  .hs-room,
  .hs-room__mask,
  .hs-room__img,
  .hs-feature,
  .hs-feature__icon,
  .hs-btn,
  .hs-chip,
  .hs-pulse::before,
  .hs-pulse::after {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  .hs-room__mask { transform: scaleX(0) !important; }
  .hs-pulse::before, .hs-pulse::after { display: none !important; }
}

@keyframes hs-fade-up {
  from { opacity: 0; transform: translateY(var(--hs-reveal-y)); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hs-chip-in {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hs-pulse-ring {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ---------- Responsive tweaks ---------- */

@media (max-width: 640px) {
  .hs-section__head--split { flex-direction: column; align-items: flex-start; }
  .hs-hero { min-height: 80vh; }
  .hs-hero__slide { min-height: 80vh; }
}


.hs-news__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--hs-surface-alt);
  border-radius: var(--hs-radius);
  overflow: hidden;
  border: 1px solid var(--hs-line);
  box-shadow: var(--hs-shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hs-news__card:hover { transform: translateY(-4px); box-shadow: var(--hs-shadow); }
.hs-news__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--hs-accent-soft); }
.hs-news__body { padding: 1.1rem 1.2rem 1.35rem; display: grid; gap: 0.45rem; }
.hs-news__title {
  margin: 0;
  font-family: var(--hs-font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--hs-ink);
}
.hs-news__text { margin: 0; color: var(--hs-muted); font-size: 0.92rem; line-height: 1.5; }

/* Zar Yazılım credit logo (footer) */
.hs-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.hs-footer__copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.hs-footer__cms {
  display: inline-flex;
  align-items: center;
  opacity: 0.88;
  transition: opacity 0.2s ease;
  line-height: 0;
}
.hs-footer__cms:hover { opacity: 1; }
.hs-footer__cms img {
  height: 28px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

/* Process / team / quotes / news / faq — mevcut hs-* diline bağlı */


.hs-team {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 2rem;
}
.hs-team__card { display: grid; gap: 0.65rem; }
.hs-team__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 1rem;
  background: #111;
}
.hs-team__img,
.hs-team__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hs-team__placeholder { background: linear-gradient(140deg, var(--hs-accent-soft), var(--hs-sea-soft)); }
.hs-team__name {
  margin: 0;
  font-family: var(--hs-font-display);
  font-size: 1.15rem;
  font-weight: 700;
}
.hs-team__role {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hs-accent);
  font-weight: 700;
}
.hs-team__bio { margin: 0; color: var(--hs-muted); font-size: 0.9rem; line-height: 1.5; }


.hs-quotes {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 2rem;
}
.hs-quote {
  margin: 0;
  padding: 1.5rem 1.35rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--hs-line);
  display: grid;
  gap: 1rem;
}
.hs-quote__text {
  margin: 0;
  font-family: var(--hs-font-display);
  font-size: 1.15rem;
  line-height: 1.45;
  font-weight: 600;
}
.hs-quote__cite {
  display: grid;
  gap: 0.15rem;
  font-size: 0.88rem;
  color: var(--hs-muted);
}
.hs-quote__cite strong { color: var(--hs-ink); }


.hs-faq {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.75rem;
  max-width: 820px;
}
.hs-faq__item {
  border: 1px solid var(--hs-line);
  border-radius: 0.85rem;
  background: #fff;
  padding: 0 1.15rem;
}
.hs-faq__q {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 0;
  font-family: var(--hs-font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.hs-faq__q::-webkit-details-marker { display: none; }
.hs-faq__a {
  padding: 0 0 1.15rem;
  color: var(--hs-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.hs-faq__a p { margin: 0 0 0.65rem; }
.hs-faq__a p:last-child { margin-bottom: 0; }


.hs-section__cta { margin-top: 1.75rem; }

