/* ==========================================================================
   KARMIR RESORT & SPA — stylesheet
   ========================================================================== */

:root{
  --ink:        #10201b;
  --ink-soft:   #17281f;
  --cream:      #f8f4ea;
  --cream-dim:  #d9d2c0;
  --gold:       #c9a35a;
  --gold-light: #e6cd8f;
  --teal:       #4d9b93;
  --text-muted: rgba(248,244,234,.72);

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans:  'Jost', sans-serif;

  --nav-h: 116px;
  --container: 1240px;

  --ease: cubic-bezier(.4,0,.2,1);
  --ease-smooth: cubic-bezier(.16,1,.3,1);
}

/* ---------- reset ---------- */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family:var(--font-sans);
  color:var(--ink);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
h1,h2,h3{ font-family:var(--font-serif); font-weight:600; line-height:1.1; }
button{ font:inherit; background:none; border:0; cursor:pointer; color:inherit; }
section[id]{ scroll-margin-top: var(--nav-h); }

.container{ max-width:var(--container); margin:0 auto; padding:0 28px; }

.section-label{
  display:inline-block;
  font-family:var(--font-sans);
  font-size:.72rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--teal);
  font-weight:500;
  margin-bottom:14px;
  position:relative;
  padding-left:34px;
}
.section-label::before{
  content:"";
  position:absolute; left:0; top:50%;
  width:24px; height:1px;
  background:var(--gold);
  transform:translateY(-50%);
}
.section-label--light{ color:var(--gold-light); }

.section-head{
  max-width:560px;
  margin:0 auto 56px;
  text-align:center;
}
.section-head h2{
  font-size:clamp(2.1rem,4vw,3rem);
  color:var(--ink);
  margin-bottom:14px;
}
.section-head p{
  color:#4a5750;
  font-size:1.02rem;
  line-height:1.6;
}
.section-head__link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:20px;
  font-size:.82rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--ink);
  border-bottom:1px solid rgba(16,32,27,.25);
  padding-bottom:2px;
  transition:color .3s var(--ease), border-color .3s var(--ease), gap .3s var(--ease);
}
.section-head__link svg{ width:15px; height:15px; }
.section-head__link:hover{ color:var(--teal); border-color:var(--teal); gap:10px; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 34px;
  font-size:.85rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-weight:500;
  border-radius:2px;
  transition:all .35s var(--ease);
  border:1px solid transparent;
  white-space:nowrap;
}
.btn--gold{
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  color:#1c1206;
}
.btn--gold:hover{ transform:translateY(-2px); box-shadow:0 14px 28px -10px rgba(201,163,90,.55); }
.btn--ghost{
  border-color:rgba(248,244,234,.5);
  color:var(--cream);
}
.btn--ghost:hover{ background:rgba(248,244,234,.12); border-color:var(--cream); }

/* reveal-on-scroll */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view{ opacity:1; transform:none; }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar{
  position:fixed; inset:0 0 auto 0;
  z-index:2000; /* must stay above 3rd-party widgets (e.g. the TR
    HotelAgent booking widget) whose own internal z-index can otherwise
    climb above the old 200 and paint over the fixed navbar on scroll */
  height:var(--nav-h);
  transition:background .4s var(--ease), height .4s var(--ease), box-shadow .4s var(--ease);
}
.navbar__inner{
  max-width:var(--container);
  height:100%;
  margin:0 auto;
  padding:0 28px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:16px;
}

.navbar__brand{ justify-self:center; display:flex; align-items:center; }
.navbar__brand img{
  height:110px; width:auto;
  transition:height .4s var(--ease);
  filter:drop-shadow(0 2px 10px rgba(0,0,0,.25));
}

/* utility cluster (language switcher + reservation number) — right */
.navbar__utility{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:10px;
}

.navbar__phone{
  display:flex;
  align-items:center;
  gap:10px;
  padding:9px 18px 9px 14px;
  border:1px solid rgba(230,205,143,.35);
  border-radius:999px;
  color:var(--cream);
  transition:border-color .35s var(--ease), background .35s var(--ease);
}
.navbar__phone:hover{ border-color:var(--gold); background:rgba(230,205,143,.08); }
.navbar__phone svg{ width:17px; height:17px; color:var(--gold-light); flex:0 0 auto; }
.navbar__phone-text{
  display:flex; flex-direction:column; line-height:1.3;
  font-size:.86rem; letter-spacing:.02em; white-space:nowrap;
}
.navbar__phone-text em{
  display:block; font-style:normal;
  font-size:.6rem; letter-spacing:.16em; text-transform:uppercase;
  color:var(--gold-light); margin-bottom:1px;
}

/* language switcher */
.lang-switcher{ position:relative; }
.lang-switcher__toggle{
  display:flex;
  align-items:center;
  gap:6px;
  padding:9px 12px;
  border:1px solid rgba(230,205,143,.35);
  border-radius:999px;
  color:var(--cream);
  font-size:.78rem;
  letter-spacing:.06em;
  transition:border-color .35s var(--ease), background .35s var(--ease);
}
.lang-switcher__toggle:hover{ border-color:var(--gold); background:rgba(230,205,143,.08); }
.lang-switcher__toggle svg{ width:16px; height:16px; color:var(--gold-light); flex:0 0 auto; }
.lang-switcher__flag{
  width:18px; height:18px;
  border-radius:50%;
  object-fit:cover;
  flex:0 0 auto;
}
.lang-switcher__menu{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  min-width:150px;
  background:var(--ink);
  border:1px solid rgba(230,205,143,.2);
  border-radius:10px;
  padding:6px;
  box-shadow:0 18px 40px -14px rgba(0,0,0,.55);
  opacity:0;
  visibility:hidden;
  transform:translateY(-6px);
  transition:opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index:220;
}
.lang-switcher.is-open .lang-switcher__menu{
  opacity:1; visibility:visible; transform:none;
}
.lang-switcher__menu a{
  display:flex;
  align-items:center;
  gap:9px;
  padding:9px 12px;
  border-radius:6px;
  font-size:.86rem;
  color:var(--text-muted);
  transition:background .25s var(--ease), color .25s var(--ease);
}
.lang-switcher__menu a:hover{ background:rgba(230,205,143,.1); color:var(--cream); }
.lang-switcher__menu a.is-active{ color:var(--gold-light); }

/* offcanvas toggle — left */
.navbar__toggle{
  justify-self:start;
  width:34px; height:22px;
  position:relative;
  z-index:210;
}
.navbar__toggle span{
  position:absolute; left:0; right:0; height:1.5px;
  background:var(--cream);
  transition:transform .35s var(--ease), opacity .35s var(--ease), background .35s var(--ease);
}
.navbar__toggle span:nth-child(1){ top:0; }
.navbar__toggle span:nth-child(2){ top:50%; transform:translateY(-50%); }
.navbar__toggle span:nth-child(3){ bottom:0; }
.navbar__toggle.is-open span:nth-child(1){ top:50%; transform:translateY(-50%) rotate(45deg); }
.navbar__toggle.is-open span:nth-child(2){ opacity:0; }
.navbar__toggle.is-open span:nth-child(3){ bottom:50%; transform:translateY(50%) rotate(-45deg); }

.navbar.is-scrolled{
  height:88px;
  background:rgba(16,32,27,.92);
  backdrop-filter:blur(10px);
  box-shadow:0 6px 24px -10px rgba(0,0,0,.4);
}
.navbar.is-scrolled .navbar__brand img{ height:76px; }

@media(max-width:460px){
  .navbar__phone-text em{ display:none; }
  .navbar__phone{ padding:9px 14px; }
}
@media(max-width:560px){
  .navbar__phone-text{ display:none; }
  .navbar__phone{ padding:9px; }
  .lang-switcher__toggle span{ display:none; }
  .lang-switcher__toggle{ padding:9px; }
}
@media(max-width:400px){
  .navbar__utility{ gap:6px; }
}

/* ==========================================================================
   OFFCANVAS MENU
   ========================================================================== */
.offcanvas-backdrop{
  position:fixed; inset:0;
  background:rgba(6,12,10,.6);
  backdrop-filter:blur(2px);
  opacity:0;
  visibility:hidden;
  transition:opacity .5s var(--ease-smooth), visibility .5s;
  z-index:2001; /* above .navbar (2000) */
}
.offcanvas-backdrop.is-open{ opacity:1; visibility:visible; }

.offcanvas{
  position:fixed; top:0; left:0; bottom:0;
  width:min(380px, 88vw);
  background:var(--ink);
  z-index:2002; /* above .navbar (2000) */
  display:flex;
  flex-direction:column;
  padding:26px 30px 40px;
  transform:translateX(-100%);
  transition:transform .6s var(--ease-smooth);
  box-shadow:40px 0 70px -30px rgba(0,0,0,.5);
  overflow-y:auto;
  will-change:transform;
}
.offcanvas.is-open{ transform:translateX(0); }

.offcanvas__head{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:56px;
}
.offcanvas__logo{ height:50px; width:auto; }
.offcanvas__close{
  width:38px; height:38px;
  flex:0 0 auto;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(248,244,234,.25);
  border-radius:50%;
  color:var(--cream);
  transition:all .3s var(--ease);
}
.offcanvas__close:hover{ border-color:var(--gold); color:var(--gold-light); }
.offcanvas__close svg{ width:15px; height:15px; }

.offcanvas__links{ display:flex; flex-direction:column; gap:2px; margin-bottom:auto; }
.offcanvas__links a{
  font-family:var(--font-serif);
  font-size:1.7rem;
  color:var(--cream);
  padding:12px 0;
  border-bottom:1px solid rgba(248,244,234,.08);
  opacity:0;
  transform:translateX(-16px);
  transition:color .3s var(--ease), padding-left .3s var(--ease),
             opacity .5s var(--ease-smooth), transform .5s var(--ease-smooth);
}
.offcanvas__links a:hover{ color:var(--gold-light); padding-left:8px; }

/* staggered reveal as the panel opens */
.offcanvas.is-open .offcanvas__links a{ opacity:1; transform:none; }
.offcanvas__links a:nth-child(1){ transition-delay:.08s; }
.offcanvas__links a:nth-child(2){ transition-delay:.11s; }
.offcanvas__links a:nth-child(3){ transition-delay:.14s; }
.offcanvas__links a:nth-child(4){ transition-delay:.17s; }
.offcanvas__links a:nth-child(5){ transition-delay:.2s; }
.offcanvas__links a:nth-child(6){ transition-delay:.23s; }
.offcanvas__links a:nth-child(7){ transition-delay:.26s; }
.offcanvas__links a:nth-child(8){ transition-delay:.29s; }
.offcanvas__links a:nth-child(9){ transition-delay:.32s; }
.offcanvas__links a:nth-child(10){ transition-delay:.35s; }
.offcanvas__links a:nth-child(11){ transition-delay:.38s; }
.offcanvas__links a:nth-child(12){ transition-delay:.41s; }
.offcanvas__links a:nth-child(13){ transition-delay:.44s; }
.offcanvas:not(.is-open) .offcanvas__links a{ transition-delay:0s !important; }

.offcanvas__contact{
  display:flex; flex-direction:column; gap:14px;
  margin-top:44px;
  padding-top:26px;
  border-top:1px solid rgba(248,244,234,.1);
}
.offcanvas__contact a{
  display:flex; align-items:center; gap:12px;
  color:var(--text-muted);
  font-size:.9rem;
}
.offcanvas__contact a:hover{ color:var(--cream); }
.offcanvas__contact svg{ width:17px; height:17px; color:var(--gold); flex:0 0 auto; }

.offcanvas__social{ display:flex; gap:12px; margin-top:24px; }
.offcanvas__social a{
  width:38px; height:38px;
  border:1px solid rgba(248,244,234,.2);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--cream);
  transition:all .3s var(--ease);
}
.offcanvas__social a:hover{ border-color:var(--gold); color:var(--gold-light); }
.offcanvas__social svg{ width:16px; height:16px; }

@media(prefers-reduced-motion:reduce){
  .offcanvas, .offcanvas-backdrop, .offcanvas__links a{
    transition-duration:.01ms !important;
    transition-delay:0s !important;
  }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative;
  height:100svh;
  min-height:560px;
  overflow:hidden;
  color:var(--cream);
}
.hero__carousel{ position:absolute; inset:0; }
.hero__slide{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:scale(1.08);
  transition:opacity 1.4s ease, transform 7s linear;
}
.hero__slide.is-active{ opacity:1; transform:scale(1); }

.hero__scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(0deg, rgba(9,16,13,.85) 0%, rgba(9,16,13,.25) 42%, rgba(9,16,13,.55) 100%),
    linear-gradient(90deg, rgba(9,16,13,.5) 0%, rgba(9,16,13,0) 45%, rgba(9,16,13,.5) 100%);
}

.hero__content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0 24px;
  max-width:820px;
  margin:0 auto;
}
.hero__eyebrow{
  font-size:.8rem;
  letter-spacing:.35em;
  text-transform:uppercase;
  color:var(--gold-light);
  margin-bottom:20px;
}
.hero__title{
  font-size:clamp(2.6rem,7vw,5.2rem);
  margin-bottom:20px;
}
.hero__text{
  max-width:560px;
  font-size:clamp(1rem,1.6vw,1.15rem);
  line-height:1.7;
  color:var(--text-muted);
  margin-bottom:28px;
}
.hero__badges{
  display:flex; align-items:center; gap:14px;
  font-size:.78rem; letter-spacing:.1em; text-transform:uppercase;
  color:var(--cream);
  margin-bottom:36px;
}
.hero__badges i{ width:4px; height:4px; background:var(--gold); border-radius:50%; display:block; }
.hero__actions{ display:flex; flex-wrap:wrap; gap:16px; justify-content:center; }

.hero__controls{
  position:absolute; left:0; right:0; bottom:34px;
  z-index:3;
  display:flex; align-items:center; justify-content:center;
  gap:26px;
}
.hero__arrow{
  width:44px; height:44px;
  border:1px solid rgba(248,244,234,.4);
  border-radius:50%;
  color:var(--cream);
  display:flex; align-items:center; justify-content:center;
  transition:all .35s var(--ease);
}
.hero__arrow svg{ width:16px; height:16px; }
.hero__arrow:hover{ background:var(--gold); border-color:var(--gold); color:#1c1206; }

.hero__dots{ display:flex; gap:10px; }
.hero__dots button{
  width:9px; height:9px; border-radius:50%;
  background:rgba(248,244,234,.35);
  transition:all .35s var(--ease);
}
.hero__dots button.is-active{ background:var(--gold); width:24px; border-radius:5px; }

.hero__scroll{
  position:absolute; right:34px; bottom:40px;
  z-index:3;
  width:1px; height:60px;
  background:rgba(248,244,234,.35);
  display:none;
}
.hero__scroll span{
  position:absolute; left:-2.5px; top:0;
  width:6px; height:6px; border-radius:50%;
  background:var(--gold-light);
  animation:scrollDown 2.2s ease-in-out infinite;
}
@keyframes scrollDown{
  0%{ top:0; opacity:0; }
  20%{ opacity:1; }
  80%{ opacity:1; }
  100%{ top:54px; opacity:0; }
}
@media(min-width:860px){ .hero__scroll{ display:block; } }

/* ==========================================================================
   HOTELAGENT RESERVATION WIDGET
   ========================================================================== */
.hotel-agent{
  padding:56px 0;
  background:var(--cream);
}
.hotel-agent #HotelAgentWidget,
.hotel-agent #hweb-widget-search-container{
  min-height:1px;
  font-family:var(--font-sans);
}

/* --- hotelagent.com widget (TR) — it's a Material UI app that reads its
   palette from MUI's standard CSS theme-variables, so we retheme it by
   overriding those variables on its own container (the widget's own
   documented theming hook, since its real class names are hashed). --- */
#HotelAgentWidget{
  --mui-palette-primary-main: var(--gold);
  --mui-palette-primary-dark: #a9823a;
  --mui-palette-primary-light: var(--gold-light);
  --mui-palette-primary-contrastText: #1c1206;
  --mui-palette-secondary-main: var(--teal);
  --mui-palette-secondary-dark: #3d7d76;
  --mui-palette-secondary-light: #7fb8b1;
  --mui-palette-secondary-contrastText: #ffffff;
  --mui-palette-background-default: var(--cream);
  --mui-palette-background-paper: #ffffff;
  --mui-palette-text-primary: var(--ink);
  --mui-palette-text-secondary: rgba(16,32,27,.65);
  --mui-palette-divider: rgba(16,32,27,.16);
  --mui-palette-action-active: var(--ink);
  --mui-palette-action-hover: rgba(201,163,90,.08);
  --mui-palette-action-selected: rgba(201,163,90,.16);
  --mui-shape-borderRadius: 2px;
  --mui-typography-fontFamily: var(--font-sans);
}

/* --- booktoweb widget (EN/DE/RU) --- */
@media (min-width: 1024px) {
  html body .flatpickr-calendar:not(.hweb-mobile-flatpickr),
  html body .flatpickr-calendar:not(.hweb-mobile-flatpickr) .flatpickr-days {
    width: 562px !important;
  }
}

html .hweb-title, html #hweb-search-panel .hweb-login {
  display: none !important;
}

html #hweb-search-panel.hweb-sbox-728x90 {
  background: rgba(0,0,0,.80) !important;
  border: 0 !important;
  text-align: left;
  border-radius: .5rem !important;
  margin: 0 auto; /* center the fixed-width widget in its section */
  box-sizing: border-box;
  max-width: 100%; /* the widget always renders as a fixed 728px box —
    this keeps it from overflowing narrow viewports before the
    mobile breakpoint below takes over the internal layout */
}

html #hweb-search-panel.hweb-sbox-728x90 .hweb-sbox-inner {
  min-height: 100%;
  padding: 20px;
  font-size: 14px;
  background: transparent;
}

html #hweb-search-panel .hweb-label {
  color: #fff;
  text-align: left;
  margin-bottom: 5px !important;
  font-size: 13px !important;
  font-weight: 500;
  text-transform: capitalize;
}

html #hweb-search-panel.hweb-sbox-728x90 .hweb-hotel-hide .hweb-location .hweb-col {
  margin-right: 4px;
}

html #hweb-search-panel.hweb-sbox-728x90 .hweb-dates {
  margin-right: 4px;
  width: 35%;
}

html #hweb-search-panel select, html #hweb-search-panel .hweb-input {
  border: 1px solid #ccc;
  background-color: #fff;
  color: #333;
  font-size: 14px;
}

html #hweb-search-panel .hweb-dateFrom .hweb-input {
  border-radius: .25rem 0 0 .25rem;
}

html #hweb-search-panel .hweb-dateTo .hweb-input {
  border-radius: 0 .25rem .25rem 0;
}

#hweb-search-panel .hweb-dates .hweb-datepicker {
  border-width: 1px !important;
  outline: none;
}

html #hweb-search-panel select, html #hweb-search-panel .hweb-input {
  padding: 10px;
  width: 100%;
  height: auto;
  font-size: 14px;
  font-weight: 500;
}

html #hweb-search-panel.hweb-sbox-728x90 .hweb-search-button {
  width: 20%;
  margin-bottom: 0 !important;
}

#hweb-search-panel.hweb-sbox-728x90 .hweb-search-button .hweb-button {
  float: none !important;
  margin-top: 20px !important;
  width: 100%;
  font-weight: 600 !important;
  border-radius: .25rem;
  padding: .6rem .2rem;
  background-color: #ff6210 !important;
}

html #hweb-search-panel.hweb-sbox-728x90 .hweb-direction {
  margin: -55px 0 10px;
  width: 100%;
  display: flex;
  justify-content: center;
}

html #hweb-search-panel .radioDirections {
  overflow: hidden;
  border: 0;
}

html #hweb-search-panel .radioDirections .hweb-direction-item {
  border: 1px solid transparent;
  color: #000 !important;
  cursor: pointer;
  font-size: 14px;
  text-transform: capitalize;
  min-width: 10rem;
  height: 35px;
  border-radius: .5rem .5rem 0 0 !important;
  background-color: rgba(255, 255, 255, .90) !important;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

html #hweb-search-panel .radioDirections .hweb-direction-item.hweb-active {
  background: rgba(0, 0, 0, .80) !important;
  border: 1px solid transparent;
  color: #fff !important;
}

@media (max-width: 767px) {
  /* the widget is hard-coded to the 728px-wide box class on every screen
     size, so on phones/tablets we stack its row of fields to full width
     instead of trying to fit a horizontal bar into a narrow viewport */
  html #hweb-search-panel.hweb-sbox-728x90 {
    width: 100% !important;
  }

  html #hweb-search-panel.hweb-sbox-728x90 .hweb-sbox-inner {
    padding: 15px !important;
  }

  html #hweb-search-panel.hweb-sbox-728x90 .hweb-direction {
    margin: -50px 0 10px !important;
    width: 100%;
    padding: 0 !important;
  }

  html #hweb-search-panel .radioDirections {
    width: 90%;
    margin: 0 auto; /* center on mobile too */
  }

  html #hweb-search-panel .radioDirections .hweb-direction-item {
    min-width: 50%;
  }

  html #hweb-search-panel.hweb-sbox-728x90 .hweb-hotel-hide .hweb-location .hweb-col,
  html #hweb-search-panel.hweb-sbox-728x90 .hweb-location,
  html #hweb-search-panel.hweb-sbox-728x90 .hweb-dates,
  html #hweb-search-panel.hweb-sbox-728x90 .hweb-roomSelectDiv,
  html #hweb-search-panel.hweb-sbox-728x90 .hweb-passType,
  html #hweb-search-panel.hweb-sbox-728x90 .hweb-guests,
  html #hweb-search-panel.hweb-sbox-728x90 .hweb-search-button {
    float: none !important;
    width: 100% !important;
    margin-right: 0 !important;
    margin-top: 10px;
  }

  html #hweb-search-panel.hweb-sbox-728x90 .hweb-dateFrom,
  html #hweb-search-panel.hweb-sbox-728x90 .hweb-dateTo {
    /* width: 50% !important; */
    float: left !important;
    margin-top: 0;
    margin-bottom: 20px;
  }

  html #hweb-search-panel.hweb-sbox-728x90 .hweb-search-button .hweb-button {
    margin: 10px 0 0 !important;
  }

  /* the flatpickr date-range calendar always renders as a fixed ~782px
     two-month grid, regardless of screen size — the widget has no mobile
     variant of its own. Rather than fight flatpickr's internal month
     layout, pin the whole calendar as a centered on-screen card and let
     the oversized grid scroll horizontally inside it, so it's always
     reachable instead of rendering off-canvas. */
  html body .flatpickr-calendar.open {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
    width: 92vw !important;
    max-width: 360px !important;
    max-height: 82vh !important;
    overflow-x: auto !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    z-index: 9999 !important;
  }
}

/* center the fixed-width widget inside its section */
.hotel-agent #hweb-widget-search-container{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
}

/* ==========================================================================
   ABOUT (index.html) / BEACH (havuz-plaj.html)
   ========================================================================== */
.about, .beach{ padding:120px 0; background:#fff; }

.about__wrap, .beach__wrap{
  display:grid;
  grid-template-columns:1fr;
  gap:50px;
  align-items:center;
}
@media(min-width:900px){
  .about__wrap, .beach__wrap{ grid-template-columns:minmax(0,1fr) minmax(0,1.15fr); gap:80px; }
}

.about__media, .beach__media{
  position:relative;
  aspect-ratio:4/5;
  border-radius:4px;
  overflow:hidden;
  box-shadow:0 30px 60px -30px rgba(16,32,27,.4);
}
.about__media img, .beach__media img{ width:100%; height:100%; object-fit:cover; }

.about__badge, .beach__badge{
  position:absolute; left:20px; bottom:20px; right:20px;
  background:rgba(16,32,27,.82);
  backdrop-filter:blur(6px);
  color:var(--cream);
  padding:18px 22px;
  border-radius:2px;
  font-family:var(--font-serif);
  font-size:1.2rem;
  line-height:1.3;
}
.about__badge span, .beach__badge span{
  display:block;
  font-family:var(--font-sans);
  font-size:.68rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--gold-light);
  margin-bottom:6px;
}

.about__content, .beach__content{ max-width:560px; }
.about__content h2, .beach__content h2{
  font-size:clamp(2rem,3.6vw,2.8rem);
  color:var(--ink);
  margin:0 0 22px;
}
.about__content p, .beach__content p{
  font-size:1.02rem;
  line-height:1.8;
  color:#4a5750;
  margin-bottom:44px;
}

.about__stats, .beach__stats{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px 24px;
}
@media(min-width:520px){ .about__stats, .beach__stats{ grid-template-columns:repeat(4,1fr); } }

.about__stat, .beach__stat{
  padding-left:18px;
  border-left:1px solid rgba(16,32,27,.14);
}
.about__stat strong, .beach__stat strong{
  display:block;
  font-family:var(--font-serif);
  font-size:1.7rem;
  color:var(--ink);
  margin-bottom:4px;
}
.about__stat span, .beach__stat span{
  font-size:.72rem;
  letter-spacing:.05em;
  text-transform:uppercase;
  color:#5b665f;
}
.beach__note, .about__note{
  margin-top:26px;
  font-size:.85rem;
  color:#8a938c;
  font-style:italic;
}

/* ==========================================================================
   SHOWCASE (photo grid + text)
   ========================================================================== */
.showcase{ padding:120px 0; background:var(--cream); }
.showcase__wrap{
  display:grid;
  grid-template-columns:1fr;
  gap:50px;
  align-items:center;
}
@media(min-width:900px){
  .showcase__wrap{ grid-template-columns:minmax(0,1.15fr) minmax(0,1fr); gap:80px; }
}
.showcase__photos{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.showcase__photos img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:4px;
  box-shadow:0 20px 40px -28px rgba(16,32,27,.35);
}
.showcase__content{ max-width:520px; }
.showcase__content h2{
  font-size:clamp(2rem,3.6vw,2.6rem);
  color:var(--ink);
  margin:0 0 22px;
}
.showcase__content p{
  font-size:1.02rem;
  line-height:1.8;
  color:#4a5750;
}

/* ==========================================================================
   POOL SPECS (havuz-plaj.html)
   ========================================================================== */
.pool-specs{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
  gap:22px;
  margin-top:56px;
}
.pool-spec-card{
  background:#fff;
  border:1px solid rgba(16,32,27,.08);
  border-radius:4px;
  padding:32px 26px;
  text-align:center;
  box-shadow:0 20px 40px -30px rgba(16,32,27,.25);
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.pool-spec-card:hover{ transform:translateY(-6px); box-shadow:0 26px 46px -26px rgba(16,32,27,.32); }

.pool-spec-card__icon{
  display:inline-flex;
  align-items:center; justify-content:center;
  width:52px; height:52px;
  border-radius:50%;
  background:rgba(201,163,90,.1);
  color:var(--gold);
  margin-bottom:18px;
}
.pool-spec-card__icon svg{ width:24px; height:24px; }

.pool-spec-card h3{
  font-size:1.15rem;
  color:var(--ink);
  margin-bottom:18px;
}

.pool-spec-card__data{
  display:flex;
  justify-content:center;
  gap:26px;
  padding-top:16px;
  border-top:1px solid rgba(16,32,27,.08);
}
.pool-spec-card__data div{ display:flex; flex-direction:column; gap:3px; }
.pool-spec-card__data strong{
  font-family:var(--font-serif);
  font-size:1.15rem;
  color:var(--ink);
}
.pool-spec-card__data span{
  font-size:.68rem;
  letter-spacing:.05em;
  text-transform:uppercase;
  color:#8a938c;
}

/* ==========================================================================
   ROOMS
   ========================================================================== */
.rooms, .pools, .info{ padding:120px 0 110px; background:var(--cream); }

/* ---------- info cards (bilmeniz gerekenler) ---------- */
.info-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:22px;
  margin-top:56px;
}
.info-card{
  background:#fff;
  border:1px solid rgba(16,32,27,.08);
  border-radius:4px;
  padding:30px 28px;
  box-shadow:0 20px 40px -30px rgba(16,32,27,.22);
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.info-card:hover{ transform:translateY(-5px); box-shadow:0 26px 46px -26px rgba(16,32,27,.3); }
.info-card__icon{
  display:inline-flex;
  align-items:center; justify-content:center;
  width:46px; height:46px;
  border-radius:50%;
  background:rgba(201,163,90,.1);
  color:var(--gold);
  margin-bottom:18px;
}
.info-card__icon svg{ width:22px; height:22px; }
.info-card h3{
  font-family:var(--font-sans);
  font-size:.95rem;
  font-weight:600;
  letter-spacing:.01em;
  color:var(--ink);
  margin-bottom:10px;
}
.info-card p{ font-size:.9rem; line-height:1.65; color:#4a5750; }

/* ---------- document / fact sheet cards (acentalar) ---------- */
.docs-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:22px;
  margin-top:56px;
}
.doc-card{
  background:#fff;
  border:1px solid rgba(16,32,27,.08);
  border-radius:4px;
  padding:34px 26px;
  text-align:center;
  box-shadow:0 20px 40px -30px rgba(16,32,27,.22);
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.doc-card:hover{ transform:translateY(-6px); box-shadow:0 26px 46px -26px rgba(16,32,27,.3); }
.doc-card__icon{
  display:inline-flex;
  align-items:center; justify-content:center;
  width:56px; height:56px;
  border-radius:50%;
  background:rgba(201,163,90,.1);
  color:var(--gold);
  margin-bottom:18px;
}
.doc-card__icon svg{ width:26px; height:26px; }
.doc-card h3{ font-size:1.1rem; color:var(--ink); margin-bottom:4px; }
.doc-card__meta{
  font-size:.7rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:#8a938c;
  margin-bottom:22px;
}
.doc-card__btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:11px 24px;
  font-size:.76rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-weight:500;
  border-radius:999px;
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  color:#1c1206;
  transition:all .35s var(--ease);
}
.doc-card__btn:hover{ transform:translateY(-2px); box-shadow:0 14px 28px -10px rgba(201,163,90,.55); }
.doc-card__btn svg{ width:14px; height:14px; }

.rooms__list{
  display:flex;
  flex-direction:column;
  gap:70px;
}

.room-row{
  display:grid;
  grid-template-columns:1fr;
  grid-template-areas:"media" "content";
  gap:36px;
  align-items:center;
}
@media(min-width:860px){
  .room-row{
    grid-template-columns:minmax(0,1.35fr) minmax(0,1fr);
    grid-template-areas:"media content";
    gap:64px;
  }
  /* swap sides but keep the media track the same (larger) width */
  .room-row:nth-child(even){
    grid-template-columns:minmax(0,1fr) minmax(0,1.35fr);
    grid-template-areas:"content media";
  }
}

.room-row__media{
  grid-area:media;
  position:relative;
  aspect-ratio:4/3;
  border-radius:4px;
  overflow:hidden;
  box-shadow:0 30px 60px -30px rgba(16,32,27,.4);
}
.room-row__media img{
  width:100%; height:100%; object-fit:cover;
  transition:transform 1s var(--ease);
}
.room-row:hover .room-row__media img{ transform:scale(1.06); }

.room-row__size{
  position:absolute; top:20px; right:20px;
  background:rgba(16,32,27,.72);
  backdrop-filter:blur(4px);
  color:var(--gold-light);
  font-size:.78rem;
  letter-spacing:.06em;
  padding:8px 16px;
  border-radius:2px;
}

.room-row__content{ grid-area:content; max-width:440px; }
.room-row__index{
  display:block;
  font-family:var(--font-serif);
  font-size:1rem;
  letter-spacing:.1em;
  color:var(--gold);
  margin-bottom:14px;
}
.room-row__content h3{
  font-size:clamp(1.7rem,2.6vw,2.3rem);
  color:var(--ink);
  margin-bottom:16px;
}
.room-row__content h3 a{ color:inherit; transition:color .3s var(--ease); }
.room-row__content h3 a:hover{ color:var(--teal); }
.room-row__content p{
  font-size:1rem;
  line-height:1.75;
  color:#4a5750;
  margin-bottom:26px;
}

.room-row__tags{
  display:flex; flex-wrap:wrap; align-items:center; gap:12px;
  font-size:.76rem; letter-spacing:.05em; text-transform:uppercase;
  color:#5b665f;
}
.room-row__tags i{ width:4px; height:4px; background:var(--gold); border-radius:50%; display:block; }

/* ==========================================================================
   PAGE HEADER (interior pages)
   ========================================================================== */
.page-header{
  position:relative;
  min-height:50vh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  color:var(--cream);
}
.page-header__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
}
.page-header__scrim{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(9,16,13,.35) 0%, rgba(9,16,13,.55) 55%, rgba(9,16,13,.92) 100%);
}
.page-header__content{
  position:relative; z-index:1;
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:150px 28px 64px;
}
.page-header__crumb{
  display:flex; align-items:center; gap:8px;
  font-size:.8rem; letter-spacing:.04em;
  color:var(--text-muted);
  margin-bottom:18px;
}
.page-header__crumb a{ color:var(--cream); }
.page-header__crumb a:hover{ color:var(--gold-light); }
.page-header__crumb i{ font-style:normal; opacity:.5; }
.page-header h1{
  font-size:clamp(2.6rem,5vw,3.8rem);
  color:var(--cream);
  margin-bottom:14px;
}
.page-header p{ color:var(--text-muted); font-size:1.02rem; max-width:520px; line-height:1.6; }

/* ---------- page notice bar (interior pages) ---------- */
.page-notice{
  background:var(--ink-soft);
  padding:16px 28px;
}
.page-notice__inner{
  max-width:var(--container);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  text-align:center;
  color:var(--text-muted);
  font-size:.86rem;
  letter-spacing:.02em;
  line-height:1.5;
}
.page-notice__inner svg{ width:22px; height:22px; color:var(--gold-light); flex:0 0 auto; }
.page-notice__inner strong{ color:var(--cream); font-weight:600; }

/* ==========================================================================
   DETAIL BLOCKS (odalar.html rooms / restoranlar.html dining)
   ========================================================================== */
.room-detail, .dining-detail{ padding:100px 0; background:#fff; }
.room-detail:nth-of-type(even), .dining-detail:nth-of-type(even){ background:var(--cream); }

.room-detail__grid, .dining-detail__grid{
  display:grid;
  grid-template-columns:1fr;
  grid-template-areas:"media" "content";
  gap:44px;
  align-items:start;
}
@media(min-width:900px){
  .room-detail__grid, .dining-detail__grid{
    grid-template-columns:minmax(0,1.05fr) minmax(0,1fr);
    grid-template-areas:"media content";
    gap:72px;
  }
  .room-detail:nth-of-type(even) .room-detail__grid,
  .dining-detail:nth-of-type(even) .dining-detail__grid{
    grid-template-columns:minmax(0,1fr) minmax(0,1.05fr);
    grid-template-areas:"content media";
  }
}

/* shared mini slider (rooms + dining) */
.detail-slider{
  grid-area:media;
  position:relative;
  aspect-ratio:4/3;
  border-radius:4px;
  overflow:hidden;
  box-shadow:0 30px 60px -30px rgba(16,32,27,.4);
}
@media(min-width:900px){
  .detail-slider{
    position:sticky;
    top:calc(var(--nav-h) + 24px);
  }
}
.rd-slides{ position:absolute; inset:0; }
.rd-slide{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity 1s ease;
}
.rd-slide.is-active{ opacity:1; }

.room-detail__size, .dining-detail__badge{
  position:absolute; top:20px; right:20px;
  z-index:2;
  background:rgba(16,32,27,.72);
  backdrop-filter:blur(4px);
  color:var(--gold-light);
  font-size:.78rem;
  letter-spacing:.06em;
  padding:8px 16px;
  border-radius:2px;
}
.room-detail__index, .dining-detail__index{
  display:block;
  font-family:var(--font-serif);
  font-size:1rem;
  letter-spacing:.1em;
  color:var(--gold);
  margin-bottom:14px;
}

.rd-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  z-index:2;
  width:42px; height:42px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.85);
  color:var(--ink);
  display:flex; align-items:center; justify-content:center;
  opacity:0;
  transition:all .35s var(--ease);
}
.rd-arrow svg{ width:14px; height:14px; }
.rd-arrow--prev{ left:14px; }
.rd-arrow--next{ right:14px; }
.detail-slider:hover .rd-arrow{ opacity:1; }
.rd-arrow:hover{ background:var(--gold); color:#1c1206; }

.rd-dots{
  position:absolute; bottom:16px; left:50%; transform:translateX(-50%);
  z-index:2;
  display:flex; gap:7px;
}
.rd-dots button{
  width:7px; height:7px; border-radius:50%;
  background:rgba(255,255,255,.5);
  transition:all .35s var(--ease);
}
.rd-dots button.is-active{ background:var(--gold); width:18px; border-radius:4px; }

/* content */
.room-detail__content, .dining-detail__content{ grid-area:content; max-width:520px; }
.room-detail__content h2, .dining-detail__content h2{
  font-size:clamp(1.9rem,3.2vw,2.5rem);
  color:var(--ink);
  margin:0 0 20px;
}
.room-detail__content > p, .dining-detail__content > p{
  font-size:1rem;
  line-height:1.8;
  color:#4a5750;
  margin-bottom:32px;
}

.room-detail__features, .dining-detail__hours{
  list-style:none;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:13px 26px;
}
.room-detail__features li, .dining-detail__hours li{
  position:relative;
  padding-left:19px;
  font-size:.9rem;
  line-height:1.5;
  color:#4a5750;
}
.room-detail__features li::before, .dining-detail__hours li::before{
  content:"";
  position:absolute; left:0; top:.5em;
  width:6px; height:6px;
  border-radius:50%;
  background:var(--gold);
}

.room-detail__perks, .dining-detail__note{
  margin-top:38px;
  padding:28px 30px;
  background:rgba(201,163,90,.08);
  border:1px solid rgba(201,163,90,.28);
  border-radius:4px;
}
.room-detail__perks h3, .dining-detail__note h3{
  font-family:var(--font-serif);
  font-size:1.25rem;
  color:var(--ink);
  margin-bottom:16px;
}
.room-detail__perks ul, .dining-detail__note ul{ list-style:none; display:grid; gap:11px; }
.room-detail__perks li, .dining-detail__note li{
  position:relative;
  padding-left:26px;
  font-size:.9rem;
  line-height:1.5;
  color:#4a5750;
}
.room-detail__perks li::before, .dining-detail__note li::before{
  content:"✦";
  position:absolute; left:0; top:-1px;
  color:var(--gold);
  font-size:.82rem;
}

/* ==========================================================================
   BARS (restoranlar.html)
   ========================================================================== */
.bars{ padding:100px 0; background:var(--cream); }

.bars__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:32px;
}
@media(min-width:640px){ .bars__grid{ grid-template-columns:1fr 1fr; } }
@media(min-width:960px){ .bars__grid{ grid-template-columns:repeat(3,1fr); gap:28px; } }

.bar-card{
  background:#fff;
  border-radius:4px;
  overflow:hidden;
  box-shadow:0 20px 40px -28px rgba(16,32,27,.35);
  transition:transform .5s var(--ease), box-shadow .5s var(--ease);
}
.bar-card:hover{ transform:translateY(-6px); box-shadow:0 26px 46px -26px rgba(16,32,27,.42); }

.bar-card__img{ position:relative; aspect-ratio:4/3; overflow:hidden; }
.bar-card__img img{ width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease); }
.bar-card:hover .bar-card__img img{ transform:scale(1.07); }
.bar-card__hours{
  position:absolute; top:16px; right:16px;
  background:rgba(16,32,27,.72);
  backdrop-filter:blur(4px);
  color:var(--gold-light);
  font-size:.7rem;
  letter-spacing:.04em;
  padding:6px 12px;
  border-radius:2px;
}
.bar-card__body{ padding:24px 24px 28px; }
.bar-card__body h3{ font-size:1.3rem; color:var(--ink); margin-bottom:10px; }
.bar-card__body p{ font-size:.9rem; line-height:1.6; color:#5b665f; }

/* ==========================================================================
   INFO NOTES
   ========================================================================== */
.info-notes{ padding:100px 0; background:var(--ink); }
.info-notes .section-head h2{ color:var(--cream); }
.info-notes .section-label{ color:var(--gold-light); }

.info-notes__list{
  max-width:720px;
  margin:0 auto;
  list-style:none;
  display:grid;
  gap:16px;
}
.info-notes__list li{
  position:relative;
  padding-left:26px;
  font-size:.98rem;
  line-height:1.6;
  color:var(--text-muted);
}
.info-notes__list li::before{
  content:"";
  position:absolute; left:0; top:.6em;
  width:6px; height:6px;
  border-radius:50%;
  background:var(--gold);
}

/* ==========================================================================
   SPA SERVICES (spa.html)
   ========================================================================== */
.spa-services{
  display:grid;
  grid-template-columns:1fr;
  gap:26px;
  max-width:820px;
  margin:56px auto 0;
}
@media(min-width:640px){ .spa-services{ grid-template-columns:1fr 1fr; } }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band{
  position:relative;
  background:var(--ink);
  padding:90px 28px;
  text-align:center;
  color:var(--cream);
  overflow:hidden;
}
.cta-band__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  z-index:0;
}
.cta-band__scrim{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(9,16,13,.86), rgba(9,16,13,.9));
  z-index:0;
}
.cta-band > .container{ position:relative; z-index:1; }
.cta-band h2{
  font-size:clamp(1.9rem,3.4vw,2.5rem);
  color:var(--cream);
  margin-bottom:16px;
}
.cta-band p{
  color:var(--text-muted);
  max-width:480px;
  margin:0 auto 36px;
  line-height:1.7;
}
.cta-band__actions{
  display:flex; gap:16px; justify-content:center; flex-wrap:wrap;
}

/* ==========================================================================
   SPEC TABLE (toplanti.html)
   ========================================================================== */
.spec-table-block{ margin-top:56px; }
.spec-table-block h3{
  font-family:var(--font-serif);
  font-size:1.4rem;
  color:var(--ink);
  margin-bottom:20px;
}
.spec-table-wrap{
  overflow-x:auto;
  border:1px solid rgba(16,32,27,.1);
  border-radius:4px;
}
.spec-table{
  width:100%;
  min-width:520px;
  border-collapse:collapse;
  background:#fff;
}
.spec-table th, .spec-table td{
  padding:16px 20px;
  text-align:left;
  font-size:.9rem;
  color:#4a5750;
  border-bottom:1px solid rgba(16,32,27,.08);
  white-space:nowrap;
}
.spec-table thead th{
  font-family:var(--font-sans);
  font-size:.7rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--teal);
  font-weight:500;
  background:var(--cream);
}
.spec-table tbody th, .spec-table tbody td:first-child{
  font-family:var(--font-serif);
  font-size:1rem;
  color:var(--ink);
}
.spec-table tbody tr:last-child th,
.spec-table tbody tr:last-child td{
  font-weight:600;
  color:var(--ink);
  background:rgba(201,163,90,.08);
  border-bottom:none;
}
.spec-table-note{
  margin-top:14px;
  font-size:.82rem;
  color:#8a938c;
  font-style:italic;
}

/* ==========================================================================
   CONTACT (iletisim.html)
   ========================================================================== */
.contact-info{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
  gap:22px;
  margin-top:56px;
}
.contact-card{
  background:#fff;
  border:1px solid rgba(16,32,27,.08);
  border-radius:4px;
  padding:32px 26px;
  text-align:center;
  box-shadow:0 20px 40px -30px rgba(16,32,27,.25);
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.contact-card:hover{ transform:translateY(-6px); box-shadow:0 26px 46px -26px rgba(16,32,27,.32); }
.contact-card__icon{
  display:inline-flex;
  align-items:center; justify-content:center;
  width:52px; height:52px;
  border-radius:50%;
  background:rgba(201,163,90,.1);
  color:var(--gold);
  margin-bottom:18px;
}
.contact-card__icon svg{ width:22px; height:22px; }
.contact-card h3{
  font-size:1.05rem;
  color:var(--ink);
  margin-bottom:12px;
}
.contact-card p, .contact-card a{
  font-size:.9rem;
  line-height:1.55;
  color:#5b665f;
}
.contact-card a:hover{ color:var(--teal); }

.map-frame{
  margin-top:56px;
  border-radius:4px;
  overflow:hidden;
  box-shadow:0 30px 60px -30px rgba(16,32,27,.4);
  line-height:0;
}
.map-frame iframe{
  width:100%;
  height:480px;
  border:0;
  display:block;
}

/* ==========================================================================
   GALLERY PAGE (galeri.html)
   ========================================================================== */
.gallery-filter{
  display:flex; flex-wrap:wrap; gap:10px;
  justify-content:center;
  margin:44px 0 4px;
}
.gallery-filter button{
  padding:9px 20px;
  font-size:.78rem;
  letter-spacing:.05em;
  text-transform:uppercase;
  color:#5b665f;
  border:1px solid rgba(16,32,27,.14);
  border-radius:999px;
  transition:all .3s var(--ease);
}
.gallery-filter button:hover{ border-color:var(--gold); color:var(--ink); }
.gallery-filter button.is-active{
  background:var(--ink);
  border-color:var(--ink);
  color:var(--cream);
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
  gap:22px;
  margin-top:36px;
}
.gallery-grid__item{
  position:relative;
  aspect-ratio:4/5;
  border-radius:4px;
  overflow:hidden;
  cursor:pointer;
  transition:opacity .3s var(--ease);
}
.gallery-grid__item.is-hidden{ display:none; }
.gallery-grid__item img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .7s var(--ease);
}
.gallery-grid__item:hover img{ transform:scale(1.08); }
.gallery-grid__zoom{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  background:rgba(16,32,27,.18);
  opacity:0;
  transition:opacity .4s var(--ease);
}
.gallery-grid__zoom svg{
  width:44px; height:44px;
  padding:12px;
  border:1px solid rgba(255,255,255,.75);
  border-radius:50%;
  color:#fff;
  transform:scale(.8);
  transition:transform .4s var(--ease);
}
.gallery-grid__item:hover .gallery-grid__zoom{ opacity:1; }
.gallery-grid__item:hover .gallery-grid__zoom svg{ transform:scale(1); }

/* ==========================================================================
   PARALLAX
   ========================================================================== */
.parallax{
  position:relative;
  min-height:560px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  isolation:isolate;
}
.parallax__bg{
  position:absolute;
  inset:-12% 0;
  background-size:cover;
  background-position:center;
  will-change:transform;
  z-index:-2;
}
.parallax__scrim{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(9,16,13,.72), rgba(16,32,27,.82));
  z-index:-1;
}
.parallax__content{
  max-width:640px;
  text-align:center;
  color:var(--cream);
  padding:110px 28px;
}
.parallax__content h2{
  font-size:clamp(2.1rem,4vw,2.9rem);
  margin-bottom:20px;
  color:var(--cream);
}
.parallax__content p{
  color:var(--text-muted);
  line-height:1.75;
  font-size:1.02rem;
}
.parallax__content strong{ color:var(--gold-light); font-weight:500; }

.parallax__badges{
  display:flex; gap:20px; justify-content:center; flex-wrap:wrap;
  margin-top:44px;
}
.cert-badge{
  display:flex; flex-direction:column; align-items:center; gap:12px;
  width:150px;
  padding:22px 14px;
  border:1px solid rgba(230,205,143,.3);
  border-radius:4px;
  background:rgba(248,244,234,.04);
}
.cert-badge svg{ width:34px; height:34px; color:var(--gold-light); }
.cert-badge span{ font-size:.76rem; letter-spacing:.03em; line-height:1.4; color:var(--cream); }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery{ padding:120px 0 130px; background:#fff; position:relative; overflow:hidden; }

.gallery__wrap{ position:relative; }

.gallery__track{
  display:flex;
  gap:20px;
  width:100%;
  overflow-x:auto;
  padding:6px 0 20px;
  scrollbar-width:none;
}
.gallery__track::-webkit-scrollbar{ display:none; }

/* edge-to-edge: first/last tile touches the browser edge, header text stays in the container */
.gallery__track::before,
.gallery__track::after{
  content:""; flex:0 0 auto; width:28px;
}
@media(min-width:1296px){
  .gallery__track::before,
  .gallery__track::after{ width:calc((100vw - var(--container)) / 2); }
}

.gallery__track figure{
  position:relative;
  flex:0 0 auto;
  width:250px;
  aspect-ratio:3/4;
  border-radius:4px;
  overflow:hidden;
  cursor:pointer;
}
.gallery__track img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .7s var(--ease);
}
.gallery__track figure:hover img{ transform:scale(1.08); }
.gallery__track figcaption{
  position:absolute; left:0; right:0; bottom:0;
  padding:16px;
  font-size:.82rem;
  letter-spacing:.04em;
  color:var(--cream);
  background:linear-gradient(0deg, rgba(9,16,13,.85), rgba(9,16,13,0));
}

.gallery__zoom{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  background:rgba(16,32,27,.18);
  opacity:0;
  transition:opacity .4s var(--ease);
}
.gallery__zoom svg{
  width:44px; height:44px;
  padding:12px;
  border:1px solid rgba(255,255,255,.75);
  border-radius:50%;
  color:#fff;
  transform:scale(.8);
  transition:transform .4s var(--ease);
}
.gallery__track figure:hover .gallery__zoom{ opacity:1; }
.gallery__track figure:hover .gallery__zoom svg{ transform:scale(1); }

.gallery__arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  z-index:5;
  width:50px; height:50px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.92);
  color:var(--ink);
  box-shadow:0 14px 30px -12px rgba(16,32,27,.4);
  display:none;
  align-items:center; justify-content:center;
  transition:all .35s var(--ease);
}
.gallery__arrow--prev{ left:14px; }
.gallery__arrow--next{ right:14px; }
@media(min-width:1296px){
  .gallery__arrow--prev{ left:34px; }
  .gallery__arrow--next{ right:34px; }
}
.gallery__arrow svg{ width:16px; height:16px; }
.gallery__arrow:hover{ background:var(--gold); color:#1c1206; }
@media(min-width:760px){ .gallery__arrow{ display:flex; } }

.gallery__more{ text-align:center; margin-top:44px; }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox{
  position:fixed; inset:0;
  z-index:400;
  background:rgba(6,10,9,.95);
  display:flex; align-items:center; justify-content:center;
  padding:80px 24px;
  opacity:0;
  visibility:hidden;
  transition:opacity .4s var(--ease), visibility .4s;
}
.lightbox.is-open{ opacity:1; visibility:visible; }

.lightbox__figure{
  display:flex; flex-direction:column; align-items:center; gap:18px;
  max-width:min(1100px,92vw);
  max-height:100%;
}
.lightbox__figure img{
  max-width:100%;
  max-height:74vh;
  object-fit:contain;
  border-radius:2px;
  box-shadow:0 50px 90px -30px rgba(0,0,0,.6);
  opacity:0;
  transform:scale(.97);
  transition:opacity .35s var(--ease), transform .35s var(--ease);
}
.lightbox__figure img.is-loaded{ opacity:1; transform:none; }
.lightbox__figure figcaption{
  color:var(--cream);
  font-family:var(--font-serif);
  font-size:1.15rem;
  letter-spacing:.02em;
}

.lightbox__close{
  position:absolute; top:24px; right:24px;
  z-index:2;
  width:44px; height:44px;
  border:1px solid rgba(248,244,234,.3);
  border-radius:50%;
  color:var(--cream);
  display:flex; align-items:center; justify-content:center;
  transition:all .3s var(--ease);
}
.lightbox__close:hover{ border-color:var(--gold); color:var(--gold-light); }
.lightbox__close svg{ width:16px; height:16px; }

.lightbox__arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  width:50px; height:50px;
  border:1px solid rgba(248,244,234,.3);
  border-radius:50%;
  color:var(--cream);
  display:flex; align-items:center; justify-content:center;
  transition:all .3s var(--ease);
}
.lightbox__arrow:hover{ background:var(--gold); border-color:var(--gold); color:#1c1206; }
.lightbox__arrow svg{ width:17px; height:17px; }
.lightbox__arrow--prev{ left:14px; }
.lightbox__arrow--next{ right:14px; }
@media(min-width:640px){
  .lightbox__arrow--prev{ left:28px; }
  .lightbox__arrow--next{ right:28px; }
}

.lightbox__counter{
  position:absolute; bottom:26px; left:50%; transform:translateX(-50%);
  color:var(--text-muted);
  font-size:.76rem;
  letter-spacing:.1em;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer{ background:#0b1613; color:var(--cream); padding-top:90px; }

.footer__top{
  display:grid;
  gap:50px;
  padding-bottom:70px;
  border-bottom:1px solid rgba(248,244,234,.1);
  grid-template-columns:1fr;
}
@media(min-width:720px){ .footer__top{ grid-template-columns:1fr 1fr; } }
@media(min-width:980px){ .footer__top{ grid-template-columns:1fr 1fr .9fr 1.6fr .8fr; } }

.footer__brand img{ height:56px; width:auto; margin-bottom:16px; }
.footer__brand p{ color:var(--text-muted); font-size:.85rem; letter-spacing:.04em; }

.footer__col h4{
  font-family:var(--font-sans);
  font-size:.76rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--gold-light);
  margin-bottom:22px;
  font-weight:500;
}
.footer__col a{
  display:block;
  color:var(--text-muted);
  font-size:.92rem;
  line-height:1.6;
  margin-bottom:14px;
  transition:color .3s var(--ease);
}
.footer__col a:hover{ color:var(--cream); }

.footer__line{
  display:flex !important;
  gap:12px;
  align-items:flex-start;
}
.footer__line svg{ width:18px; height:18px; flex:0 0 auto; margin-top:2px; color:var(--gold); }

.footer__social{ display:flex; gap:12px; }
.footer__social a{
  width:38px; height:38px;
  border:1px solid rgba(248,244,234,.2);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:0;
}
.footer__social svg{ width:16px; height:16px; }
.footer__social a:hover{ border-color:var(--gold); color:var(--gold-light); }

.footer__bottom{
  max-width:var(--container);
  margin:0 auto;
  padding:26px 28px 34px;
  display:flex; flex-wrap:wrap; gap:10px 24px;
  justify-content:space-between;
  font-size:.78rem;
  color:var(--text-muted);
  letter-spacing:.03em;
}

/* ==========================================================================
   LEGAL / TEXT PAGES (çerezler, KVKK, aydınlatma metni)
   ========================================================================== */
.legal{ padding:100px 0 120px; background:#fff; }
.legal__wrap{ max-width:840px; margin:0 auto; }

.legal__intro{
  margin-bottom:56px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(16,32,27,.1);
}
.legal__intro p{ color:#4a5750; font-size:1rem; line-height:1.75; }
.legal__intro p + p{ margin-top:14px; }

.legal__toc{
  display:flex; flex-wrap:wrap; gap:10px 12px;
  margin-top:28px;
}
.legal__toc a{
  font-size:.78rem; letter-spacing:.03em;
  color:var(--teal);
  padding:8px 16px;
  border:1px solid rgba(77,155,147,.3);
  border-radius:999px;
  transition:all .3s var(--ease);
}
.legal__toc a:hover{ background:var(--teal); color:#fff; border-color:var(--teal); }

.legal__section{ margin-bottom:52px; scroll-margin-top:120px; }
.legal__section:last-child{ margin-bottom:0; }

.legal__section h2{
  font-size:clamp(1.5rem,2.6vw,1.9rem);
  color:var(--ink);
  margin-bottom:18px;
  padding-bottom:14px;
  border-bottom:1px solid rgba(16,32,27,.1);
}
.legal__section h3{
  font-family:var(--font-sans);
  font-size:.78rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--teal);
  margin:26px 0 12px;
}
.legal__section p{ color:#4a5750; font-size:.98rem; line-height:1.8; }
.legal__section p + p{ margin-top:14px; }

.legal__section ul{ margin:14px 0; }
.legal__section ul li{
  position:relative;
  padding-left:22px;
  color:#4a5750;
  font-size:.98rem;
  line-height:1.75;
  margin-bottom:8px;
}
.legal__section ul li::before{
  content:"";
  position:absolute; left:2px; top:.7em;
  width:6px; height:6px;
  border-radius:50%;
  background:var(--gold);
}
.legal__section strong{ color:var(--ink); font-weight:600; }
.legal__section a:not(.legal__toc a){ color:var(--teal); text-decoration:underline; text-underline-offset:2px; }
.legal__section a:not(.legal__toc a):hover{ color:var(--ink); }

.legal__note{
  background:var(--cream);
  border-left:3px solid var(--gold);
  padding:18px 22px;
  margin:18px 0;
  border-radius:2px;
}
.legal__note p{ font-size:.92rem; }

.legal__table-wrap{ overflow-x:auto; margin:18px 0; }
.legal__table{
  width:100%;
  min-width:640px;
  border-collapse:collapse;
  font-size:.88rem;
}
.legal__table th{
  text-align:left;
  font-family:var(--font-sans);
  font-size:.7rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--cream);
  background:var(--ink-soft);
  padding:12px 16px;
}
.legal__table td{
  padding:14px 16px;
  border-bottom:1px solid rgba(16,32,27,.08);
  color:#4a5750;
  line-height:1.6;
  vertical-align:top;
}
.legal__table tr:nth-child(even) td{ background:rgba(217,210,192,.18); }
.legal__table td strong{ display:block; color:var(--ink); font-size:.9rem; }

.legal__contact{
  margin-top:16px;
  padding:22px 26px;
  background:var(--cream);
  border-radius:4px;
}
.legal__contact p{ margin-bottom:8px; }
.legal__contact p:last-child{ margin-bottom:0; }

/* activity blocks (aydınlatma metni — veri işleme süreçleri) */
.legal__activity{
  scroll-margin-top:120px;
  margin:28px 0;
  padding:30px 32px;
  background:var(--cream);
  border-radius:4px;
  border:1px solid rgba(16,32,27,.08);
}
.legal__activity + .legal__activity{ margin-top:28px; }
.legal__activity .legal__activity-title{
  font-family:var(--font-serif);
  font-size:1.2rem;
  font-weight:600;
  color:var(--ink);
  margin-bottom:18px;
  padding-bottom:14px;
  border-bottom:1px solid rgba(16,32,27,.12);
}
.legal__activity > p{ margin-bottom:18px; }
.legal__activity > p:last-child{ margin-bottom:0; }

.legal__purpose{ margin-bottom:18px; }
.legal__purpose:last-of-type{ margin-bottom:24px; }
.legal__purpose h4{
  font-family:var(--font-sans);
  font-size:.86rem;
  font-weight:600;
  color:var(--ink-soft);
  margin-bottom:8px;
  display:flex; align-items:flex-start; gap:8px;
}
.legal__purpose h4::before{
  content:"○";
  color:var(--gold);
  font-size:.65rem;
  line-height:1.7;
  flex:0 0 auto;
}
.legal__activity p.legal__cite{
  font-size:.88rem;
  line-height:1.7;
  color:#5a655e;
  margin:0 0 8px 20px;
  padding-left:16px;
  border-left:2px solid var(--gold-light);
  font-style:italic;
}
.legal__activity p.legal__cite:last-child{ margin-bottom:0; }
.legal__activity p.legal__cite strong{ font-style:normal; }

.legal__subhead{
  font-family:var(--font-sans);
  font-size:.7rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--teal);
  margin:20px 0 6px;
}
.legal__activity .legal__subhead:first-of-type{ margin-top:22px; }

/* ==========================================================================
   RESPONSIVE TWEAKS
   ========================================================================== */
@media(max-width:539px){
  .hero__actions{ flex-direction:column; width:100%; }
  .hero__actions .btn{ width:100%; }
  .cert-badge{ width:130px; }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (EN/DE/RU)
   ========================================================================== */
.whatsapp-fab{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:230;
  width:58px;
  height:58px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#25D366;
  color:#fff;
  box-shadow:0 14px 28px -8px rgba(16,32,27,.45);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.whatsapp-fab svg{ width:30px; height:30px; }
.whatsapp-fab:hover{
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 18px 34px -8px rgba(16,32,27,.55);
  color:#fff;
}
@media(max-width:539px){
  .whatsapp-fab{ width:52px; height:52px; right:16px; bottom:16px; }
  .whatsapp-fab svg{ width:27px; height:27px; }
}

/* Nudge LiveChat's own launcher bubble up so it stacks above our
   WhatsApp button instead of overlapping it in the bottom-right corner.
   LiveChat renders its widget asynchronously into #chat-widget-container;
   if a future LiveChat release changes that id this rule simply becomes
   a no-op rather than breaking anything. */
#chat-widget-container{
  bottom:96px !important;
}
@media(max-width:539px){
  #chat-widget-container{ bottom:84px !important; }
}
