@font-face {
  font-family: 'GT Ultra';
  src: url('../fonts/GTUltra-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Ultra';
  src: url('../fonts/GTUltra-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Ultra';
  src: url('../fonts/GTUltra-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Ultra Median';
  src: url('../fonts/GTUltraMedian-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Ultra Median';
  src: url('../fonts/GTUltraMedian-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Ultra Median';
  src: url('../fonts/GTUltraMedian-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TT Hoves Pro';
  src: url('../fonts/TTHovesPro-Lt.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TT Hoves Pro';
  src: url('../fonts/TTHovesPro-LtIt.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'TT Hoves Pro';
  src: url('../fonts/TTHovesPro-Rg.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TT Hoves Pro';
  src: url('../fonts/TTHovesPro-It.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'TT Hoves Pro';
  src: url('../fonts/TTHovesPro-Md.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TT Hoves Pro';
  src: url('../fonts/TTHovesPro-MdIt.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'TT Hoves Pro';
  src: url('../fonts/TTHovesPro-Bd.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

img{
	border-radius:4px !important;
}


:root {
  --navy:        #002855;
  --navy-dark:   #001a38;
  --gold:        #bc955c;
  --gold-light:  #e0c58e;
  --gold-pale:   #d5ba8c;
  --gold-dark:   #8c6f45;
  --gray:        #6d675e;
  --cream:       #e8ded0;
  --cream-light: #f7f2ea;
  --white:       #ffffff;
  --red-wine:    #5a0019;

  --font-serif: 'GT Ultra Median', Georgia, serif;
  --font-sans:  'TT Hoves Pro', sans-serif;

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


 .gallery-section-eyebrow {
          font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
			
    }
	
	    .gallery-section-title {
          font-family: var(--font-serif);
    font-size: 62px;
    font-weight: 300;
    line-height: 68px;
    color: var(--navy);
    }



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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--navy-dark);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
.container--wide {
  max-width: 1920px;
  margin: 0 auto;
}



header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.3s, box-shadow 0.3s;
}
header.scrolled {
  position: fixed;
  background: rgba(0, 28, 56, 0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
  transition: background 0.3s, box-shadow 0.3s, transform 0.4s ease;
}
header.header--hidden {
  transform: translateY(-100%);
}
header.scrolled .nav-logo img { height: 70px; transition: height 0.3s ease; }

nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px max(40px, calc((100vw - 1350px) / 2));
  gap: 60px;
}

.separator-logo-mobile { display: none; }

.nav-links { display: flex; list-style: none; gap: 90px; justify-content: flex-start; align-items: center; }
.nav-links--right { justify-content: flex-end; gap: 90px !important; align-items: center; }

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
      font-family: var(--font-serif);

  font-size: 16px;
  letter-spacing: -0.36px;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { opacity: 0.7; }
.nav-links a.active { border-bottom: 2px solid #fff; padding-bottom: 2px; }

.nav-phone-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--navy) !important;
  padding: 10px 20px; border-radius: 8px;
  font-size: 15px !important; font-weight: 600 !important;
  letter-spacing: 1px; text-decoration: none !important;
  transition: opacity 0.2s; white-space: nowrap;
}
.nav-phone-btn:hover { opacity: 0.85; }

.nav-logo { text-align: center; }
.nav-logo img { height: 120px; width: auto; display: block; margin: 0 auto; transition: height 0.3s ease; }

.nav-right-wrap { display: flex; align-items: center; justify-content: flex-end; gap: 24px; }

.nav-lang {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid rgba(255,255,255,0.6); border-radius: 3px;
  padding: 5px 12px; color: #fff; font-weight: 600; font-size: 16px;
  cursor: pointer; white-space: nowrap; letter-spacing: -0.36px;
  transition: border-color 0.2s;
}
.nav-lang:hover { border-color: #fff; }
.nav-lang-arrow { font-size: 10px; margin-top: 1px; transition: transform 0.2s; }
.nav-lang.open .nav-lang-arrow { transform: rotate(180deg); }
.nav-lang-li { position: relative; list-style: none; }
.nav-lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  list-style: none;
  padding: 4px 0;
  min-width: 60px;
  z-index: 500;
}
.nav-lang-dropdown.open { display: block; }
.nav-lang-dropdown li a {
  display: block;
  padding: 8px 16px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap;
}
.nav-lang-dropdown li a:hover { background: rgba(255,255,255,0.1); }


.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none; z-index: 400;
}
.nav-hamburger span { display: block; width: 26px; height: 2px; background: #fff; transition: transform 0.35s ease, opacity 0.25s ease; }
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


@keyframes menuFadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes menuFadeOut { from { opacity: 1; } to { opacity: 0; } }
@keyframes menuItemIn  { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes menuItemOut { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(16px); } }

.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--navy); z-index: 350;
  flex-direction: column; align-items: center; justify-content: center; gap: 36px;
}
.mobile-menu.open { display: flex; animation: menuFadeIn 0.35s ease forwards; }
.mobile-menu.open a, .mobile-menu.open button { opacity: 0; animation: menuItemIn 0.4s ease forwards; }
.mobile-menu.open a:nth-child(2) { animation-delay: 0.08s; }
.mobile-menu.open a:nth-child(3) { animation-delay: 0.14s; }
.mobile-menu.open a:nth-child(4) { animation-delay: 0.20s; }
.mobile-menu.open a:nth-child(5) { animation-delay: 0.26s; }
.mobile-menu.open a:nth-child(6) { animation-delay: 0.32s; }
.mobile-menu.open a:nth-child(7) { animation-delay: 0.38s; }
.mobile-menu.closing { display: flex; animation: menuFadeOut 0.3s ease forwards; }
.mobile-menu.closing a, .mobile-menu.closing button { animation: menuItemOut 0.2s ease forwards; }
.mobile-menu a {
  color: #fff; text-decoration: none;
  font-family: var(--font-serif);
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 300; letter-spacing: 0.5px; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu__close { display: none; }


.floating-talep-btn {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  background: #bc955c; color: #fff;
  writing-mode: vertical-rl; text-orientation: mixed;
  padding: 22px 14px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 600; letter-spacing: 2px;
  cursor: pointer; z-index: 500; border: none;
  border-radius: 6px 0 0 6px; transition: background 0.2s;
}
.floating-talep-btn:hover { background: var(--navy-dark); }


.talep-overlay { display: none; position: fixed; inset: 0; background: rgba(0,20,50,0.4); z-index: 600; }
.talep-overlay.open { display: block; }


.talep-panel {
  position: fixed; right: -460px; bottom: 0;
  width: 420px; max-height: 92vh; overflow-y: auto;
  background: var(--cream-light);
  border-left: 3px solid var(--gold);
  padding: 44px 36px 36px;
  z-index: 700;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 48px rgba(0,20,50,0.18);
}
.talep-panel.open { right: 0; }
.talep-panel__close {
  position: absolute; top: 18px; right: 20px;
  background: none; border: none; font-size: 28px;
  cursor: pointer; color: var(--gray); line-height: 1; font-weight: 300; transition: color 0.2s;
}
.talep-panel__close:hover { color: var(--navy); }
.talep-panel h2 { font-family: var(--font-serif); font-weight: 300; font-size: 28px; line-height: 1.15; color: var(--navy); margin-bottom: 8px; }
.tp-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 2.4px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.tp-sub { font-size: 14px; line-height: 22px; color: var(--gray); margin-bottom: 28px; }
.tp-divider { height: 1px; background: #DDD0BA; margin-bottom: 24px; }
.tp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px;}
.tp-input {
  width: 100%; height: 52px; background: #fff;
  border: 1px solid #DDD0BA; border-radius: 3px;
  padding: 0 16px; font-family: var(--font-sans); font-size: 14px;
  color: var(--navy); outline: none; display: block; margin-bottom: 10px; transition: border-color 0.2s;
}
.tp-input::placeholder { color: var(--gray); }
.tp-input:focus { border-color: var(--gold); }
.tp-phone {
  display: flex; align-items: center;
  background: #fff; border: 1px solid #DDD0BA; border-radius: 3px;
  padding: 0 16px; height: 52px; margin-bottom: 10px; gap: 8px; transition: border-color 0.2s;
}
.tp-phone:focus-within { border-color: var(--gold); }
.tp-country-select {
  border: none; outline: none; background: transparent;
  font-family: var(--font-sans); font-size: 14px; color: var(--navy);
  cursor: pointer; padding-right: 6px;
  border-right: 1px solid #DDD0BA; margin-right: 10px; flex-shrink: 0;
}
.tp-phone input { border: none; outline: none; font-family: var(--font-sans); font-size: 14px; color: var(--navy); flex: 1; background: transparent; }
.tp-phone input::placeholder { color: var(--gray); }
.tp-legal { font-size: 12px; color: var(--gray); margin: 16px 0 10px; line-height: 18px; }
.tp-legal a { color: var(--gold); text-decoration: underline; }
.tp-check-row { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 10px; }
.tp-check-row input[type=checkbox] { margin-top: 3px; flex-shrink: 0; accent-color: var(--navy); }
.tp-check-row label { font-size: 12px; color: var(--gray); line-height: 18px; cursor: pointer; }
.tp-check-row label a { color: var(--gold); text-decoration: underline; }
.tp-channels { display: flex; gap: 16px; margin: 4px 0 14px; flex-wrap: wrap; }
.tp-channels label { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--navy); cursor: pointer; }
.tp-channels input[type=checkbox] { accent-color: var(--navy); }
.tp-submit {
  width: 100%; height: 54px; background: var(--gold); color: var(--navy);
  border: none; border-radius: 3px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 600; letter-spacing: 2px;
  cursor: pointer; margin-top: 14px; transition: opacity 0.2s;
}
.tp-submit:hover { opacity: 0.85; }


@media (max-width: 1024px) {
  nav { gap: 40px; }
  .nav-links { gap: 40px; }
  .nav-links--right { gap: 40px; }
  .nav-logo img { height: 90px; }
}

 @media (max-width: 768px) {
    header { z-index: 400; position: fixed; background: var(--navy); }
    nav { grid-template-columns: auto 1fr auto; padding: 20px; gap: 0; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; grid-column: 1; grid-row: 1; }
    .nav-logo { grid-column: 2; grid-row: 1; text-align: center; }
    .nav-logo img { margin: 0 auto; height: 64px !important; }
    .nav-right-wrap { display: flex; align-items: center; grid-column: 3; grid-row: 1; }
    .nav-right-wrap .nav-links--right { display: flex; gap: 0; }
   .nav-right-wrap .nav-links--right > li { display: none !important; }
  .nav-right-wrap .nav-links--right > li.nav-lang-li { display: flex !important; align-items: center; }
    .hero { margin-top: 104px; }
    header.scrolled .nav-logo img { height: 54px !important; }
  }



.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}


.hero-slider__track {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slider__slide.active { opacity: 1; }
.hero-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* No-crop variant: görsel kesilmeden tam olarak gösterilir */
.hero-slider--nocrop {
  min-height: unset;
  overflow: visible;
  display: block; /* flex kaldırıldı, block layout */
}
.hero-slider--nocrop .hero-slider__track {
  position: relative;
  inset: unset;
  width: 100%;
}
.hero-slider--nocrop .hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.hero-slider--nocrop .hero-slider__slide {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slider--nocrop .hero-slider__slide.active {
  position: relative;
  opacity: 1;
}
.hero-slider--nocrop .hero-slider__slide picture {
  display: block;
  width: 100%;
}
.hero-slider--nocrop .hero-slider__slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
  object-position: unset;
}

.hero-slider__dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-slider__dot {
  width: 40px;
  height: 2px;
  border-radius: 0;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
}
.hero-slider__dot.active {
  background: var(--gold);
}
.hero--short {
  min-height: 55vh;
  align-items: center;
}
.hero--60 {
  min-height: 80vh;
}
.hero--dark-center {
  min-height: 55vh;
  align-items: center;
  justify-content: flex-start;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 280px;
  background: linear-gradient(to bottom, rgba(0,40,85,0.4), transparent);
  z-index: 1;
}
.hero__overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 320px;
  background: linear-gradient(to top, rgba(0,40,85,0.4), transparent);
  z-index: 1;
}
.hero__overlay-full {
  position: absolute;
  inset: 0;
  background: rgba(0, 28, 56, 0.55);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 40px 80px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.hero__content--center {
  text-align: left;
  padding: 140px 40px 60px;
}
.hero__eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  max-width: 650px;
}
.hero__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gold-pale);
  margin-top: 20px;
  max-width: 560px;
}


.section-eyebrow {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 62px;
  font-weight: 300;
  line-height: 68px;
  color: var(--navy);
}
.section-title--white { color: var(--white); }
.section-title--gold { color: var(--gold); }
.section-title--gold-dark { color: var(--gold-dark); }
.section-title--center { text-align: center; }
.section-title--lg {
  font-size: clamp(40px, 4.5vw, 70px);
  line-height: 1.05;
}
.section-title--xl {
  font-size: clamp(50px, 6vw, 90px);
  line-height: 1.05;
}
.section-subtitle {
  font-size: 19px;
  line-height: 29px;
  color: var(--gray);
  margin-top: 24px;
}
.section-subtitle--white { color: var(--cream-light); }
.section-subtitle--center { text-align: center; }


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 32px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold-light);
  color: var(--navy);
}
.btn--gold:hover { background: var(--gold); color: var(--white); }
.btn--outline {
  border: 1.5px solid var(--white);
  color: var(--white);
}
.btn--outline:hover { background: var(--white); color: var(--navy); }


.section {
  padding: 100px 0;
}
.section--sm { padding: 60px 0; }
.section--lg { padding: 140px 0; }
.section--navy { background: var(--navy); }
.section--navy-dark { background: var(--navy-dark); }
.section--cream { background: var(--cream); }
.section--cream-light { background: var(--cream-light); }
.section--wine { background: #4a0015; }


.home-intro { padding-top: 100px; padding-bottom: 80px; }


.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split--60-40 { grid-template-columns: 60fr 40fr; }
.split--40-60 { grid-template-columns: 40fr 60fr; }
.split--gap-lg { gap: 100px; }

.split__image {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split__image--tall { aspect-ratio: 3/4; }
.split__image--wide { aspect-ratio: 16/10; }
.split__image--square { aspect-ratio: 4/3; }
.split__content { padding: 20px 0; }


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


.img-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  text-align: center;
  margin-top: 12px;
}
.img-label--white { color: rgba(255,255,255,0.6); }


.intro-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  margin-top: 24px;
}
.intro-text-grid .section-subtitle { margin-top: 0; }
.mt-48 { margin-top: 48px; }
.stats-block { margin-top: 32px; }
.stats-group { margin-bottom: 16px; }
.stats-group-title {
  font-family: 'TT Hoves Pro', sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 4px;
}
.stats-group-sublabel {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.stats-grid {
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(188, 149, 92, 0.3);
  padding-top: 12px;
}
.stat-item {}
.stat-value {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.1;
}
.stat-label {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  background: rgba(0,40,85,0.15);
  align-self: stretch;
  margin: 0 8px;
}


.slide-indicators {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}
.slide-dot {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: #d1d5d8;
  cursor: pointer;
  transition: background var(--transition);
}
.slide-dot.active { background: var(--gold); }


.collage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  aspect-ratio: 16/10;
}
.collage-grid .img-1 { grid-column: 1; grid-row: 1 / 3; }
.collage-grid .img-2 { grid-column: 2; grid-row: 1; }
.collage-grid .img-3 { grid-column: 3; grid-row: 1; }
.collage-grid .img-4 { grid-column: 2 / 4; grid-row: 2; }
.collage-grid img { width: 100%; height: 100%; object-fit: cover; }


.gallery-scroll-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.gallery-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 54px 40px;
  cursor: grab;
  user-select: none;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-scroll.is-dragging { cursor: grabbing; }
.gallery-scroll__item {
  flex-shrink: 0;
  overflow: hidden;
}
.gallery-scroll__item--wide  { width: 1024px; height: 676px; }
.gallery-scroll__item--std   { width: 861px;  height: 568px; }
.gallery-scroll__item--tall  { width: 861px;  height: 676px; }
.gallery-scroll__item img { width: 100%; height: 100%; object-fit: cover; }

.gallery-scroll-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 16px 40px 8px;
  position: relative;
}
.gallery-scroll-track {
  width: 1841px;
  max-width: 100%;
  height: 4px;
  background: rgba(0,0,0,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.gallery-scroll-thumb {
  height: 100%;
  width: 30%;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.1s;
}


.section-center {
  text-align: center;
 
}
.section-center .section-title { max-width: 900px; margin: 0 auto; }
.section-center .section-subtitle { max-width: 700px; margin: 20px auto 0; }


.tagline {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--gray);
  text-align: center;
  line-height: 1.6;
}


.kulturel-section {
  padding: 80px 0 0;
  background: #fff;
}
.kulturel-section__text {
  text-align: center;
  margin-bottom: 60px;
}

.peek-slider {
  position: relative;
  overflow: hidden;
  padding-bottom: 70px;
}
.peek-slider__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.peek-slider__slide {
  flex: 0 0 50%;
  padding: 0 10px;
  box-sizing: border-box;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease;
  transform: scale(0.82);
  opacity: 0.45;
}
.peek-slider__slide.active {
  transform: scale(1);
  opacity: 1;
}
.peek-slider__slide img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.peek-slider__btn {
  position: absolute;
  top: calc(50% - 35px);
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s, transform 0.2s;
}
.peek-slider__btn img { width: 46px; height: 46px; display: block; }
.peek-slider__btn:hover { opacity: 0.75; }
.peek-slider__btn--prev {
  left: 4%;
  transform: translateY(-50%) scaleX(-1);
}
.peek-slider__btn--prev:hover {
  transform: translateY(-50%) scaleX(-1);
  opacity: 0.75;
}
.peek-slider__btn--next { right: 4%; }


.etro-section {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url('https://etrosuites.com/wp-content/themes/bellavor/assets/images/020ca41a.webp') center/cover no-repeat;  background-size: cover;
}
.etro-section__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 40px;
 background: url('/assets/images/etrobg.webp') center/cover no-repeat;  background-size: cover;
  background-position: center;
}
.etro-section__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--gold-light);
  margin-top: 16px;
}
.etro-section__highlight {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  margin-top: 20px;
  line-height: 1.3;
}
.etro-section__image {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.etro-section__image img { width: 100%; height: 100%; object-fit: cover; }


.podium-section { overflow: hidden; }

.podium-gallery-wrap {
  overflow: visible;
  
}

.podium-gallery {
  display: grid;
  grid-template-rows: 260px 290px;
  grid-template-columns: repeat(4, 46%);
  gap: 10px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  touch-action: pan-x;
}
.podium-gallery::-webkit-scrollbar { display: none; }
.podium-gallery.is-dragging { cursor: grabbing; }

.pg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pg-img--wide { grid-column: span 2; }

.podium-dots {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: flex-end;
}
.podium-dot {
  width: 36px;
  height: 3px;
  background: rgba(0, 40, 85, 0.25);
  cursor: pointer;
  transition: background 0.3s;
}
.podium-dot.active { background: var(--gold); }


.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  border-radius: 2px;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.lightbox.open .lightbox__img {
  transform: scale(1);
}
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  background: none;
  border: none;
  font-family: inherit;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lightbox__prev:hover,
.lightbox__next:hover { opacity: 1; }
.lightbox__prev { left: 24px; transform: translateY(-50%) scaleX(-1); }
.lightbox__next { right: 24px; }
.lightbox__prev img,
.lightbox__next img { width: 46px; height: 46px; display: block; }

.podium-gallery { cursor: none; }
.podium-gallery.is-dragging { cursor: none; }

.pg-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9000;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s;
  opacity: 0;
}
.pg-cursor.visible {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.pg-cursor img {
  width: 32px;
  height: 32px;
  display: block;
  filter: brightness(0) invert(1);
}


.map-section { padding: 80px 0 0; }
.map-image {
  width: 100%;
  margin-top: 60px;
}
.map-image img { width: 100%; height: auto; display: block; }


.cta-section-wrap {
  background: #fff;
}
.cta-section {
  padding: 80px 40px 0;
  max-width: 1440px;
  margin: 0 auto;
}
.cta-card {
  background: #EFE6D8;
  border-radius: 4px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 10;
  margin-bottom: -140px;
}
.cta-card__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  color: var(--gold-dark);
  line-height: 1.15;
  margin-top: 12px;
}
.cta-card__text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--navy-dark);
  margin-top: 20px;
}
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cta-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cta-form__field {
  background: var(--white);
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  padding: 0 20px;
  height: 56px;
  display: flex;
  align-items: center;
}
.cta-form__field input,
.cta-form__field textarea {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: var(--navy-dark);
}
.cta-form__field::placeholder,
.cta-form__field input::placeholder,
.cta-form__field textarea::placeholder { color: var(--gray); }
.cta-form__textarea {
  height: 80px;
  align-items: flex-start;
  padding-top: 16px;
}
.cta-form__textarea textarea { resize: none; height: 100%; }
.cta-form__submit { margin-top: 4px; }


.site-footer {
  background: var(--navy-dark);
  padding-top: 180px;
}
.footer__logo-img {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 24px;
}
.footer__social-link {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer__social-link:hover { color: var(--gold); }
.footer__bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(185,151,91,0.3);
  margin-top: 60px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
  gap: 60px;
  padding: 0 40px 60px;
  max-width: 1440px;
  margin: 0 auto;
}
.footer__brand-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gold-pale);
  margin-top: 24px;
  max-width: 400px;
}
.footer__logo-text-unused {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1;
}
.footer__logo-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-top: 4px;
}
.footer__col-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__link {
  font-size: 15px;
  color: var(--white);
  line-height: 1.7;
  transition: color var(--transition);
}
.footer__link:hover { color: var(--gold-pale); }
.footer__connect-icons {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}
.footer__social-icon {
  width: 20px;
  height: 20px;
  opacity: 0.85;
  transition: opacity var(--transition);
}
.footer__social-icon:hover { opacity: 1; }
.footer__lang {
  position: relative;
}
.footer__lang-label {
  font-size: 11px;
  color: var(--white);
  opacity: 0.7;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.footer__lang-select {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 14px;
  padding: 8px 32px 8px 12px;
  border-radius: 3px;
  appearance: none;
  cursor: pointer;
  width: 180px;
}
.footer__lang-select option { background: var(--navy-dark); }
.footer__bottom {
  border-top: 1px solid rgba(185, 151, 91, 0.3);
  padding: 20px 40px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copyright {
  font-size: 13px;
  color: var(--gold-pale);
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 13px;
  color: var(--gold-pale);
  transition: color var(--transition);
}
.footer__legal a:hover { color: var(--white); }
.footer__legal-sep { color: var(--gold-pale); font-size: 13px; }


.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  margin-bottom: -400px;
  position: relative;
  z-index: 10;
}
.room-card__image {
  height: 600px;
  overflow: hidden;
  margin-bottom: 20px;
}
.room-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.room-card:hover .room-card__image img { transform: scale(1.04); }
.room-card__name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 8px;
}
.room-card__desc { font-size: 15px; line-height: 1.6; color: var(--gray); }


.gastronomi-section {}
.gastronomi-section__text {
  background: #fff;
}
.gastronomi-wide-img {
  max-width: 1440px;
  margin: 48px auto -220px;
  padding: 0 40px;
  position: relative;
  z-index: 10;
}
.gastronomi-wide-img img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  display: block;
}
.gastronomi-section__cards {
  background: #E8DED0;
  padding: 280px 0 100px;
}
.gastronomi-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: -350px;
}
.gastronomi-card__img {
  aspect-ratio: 1/1.1;
  overflow: hidden;
  margin-bottom: 20px;
}
.gastronomi-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gastronomi-card__title {
  font-family: var(--font-serif);
  font-size: 28px;
	line-height:30px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 10px;
}
.gastronomi-card__desc { font-size: 14px; line-height: 1.7; color: var(--gray); }

.dining-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 320px 320px;
  gap: 8px;
  margin-top: 48px;
}
.dining-grid img { width: 100%; height: 100%; object-fit: cover; }
.dining-grid .dining-tall { grid-row: span 2; }
.dining-grid .dining-wide { grid-column: span 2; }

.dining-card { position: relative; overflow: hidden; }
.dining-card__label {
  position: absolute;
  bottom: 16px; left: 16px;
  z-index: 2;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.dining-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%);
}


.etro-content-slider {
  display: grid;
  grid-template-columns: 42fr 58fr;
  padding: 50px 0;
  box-sizing: content-box;
}
.ecs__left {
  background: #fff;
  display: flex;
  align-items: stretch;
  height: 100%;
}
.ecs__peek {
  width: 72px;
  flex-shrink: 0;
  overflow: hidden;
}
.ecs__peek img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}
.ecs__text-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 60px 60px 60px 40px;
  overflow: hidden;
}
.ecs__slides-wrap {
  display: grid;
  width: 100%;
}
.ecs__slide {
  grid-row: 1;
  grid-column: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  visibility: hidden;
}
.ecs__slide--active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.ecs__logo {
  height: 60px;
  margin-top: 32px;
  display: block;
}
.ecs__right {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.ecs__track {
  display: flex;
  height: 100%;
  width: 100%;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ecs__img {
  flex: 0 0 72%;
  height: 100%;
}
.ecs__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ecs__nav {
  display: none;
}
@media (max-width: 768px) {
  .ecs__nav {
    display: none;
  }

  
  .ecs__left { overflow: visible; height: auto; }
  .ecs__text-wrap { overflow: visible; align-items: flex-start; padding-bottom: 0; }
  .ecs__right { height: 280px; }
  .etro-content-slider { gap: 0; }
  .ecs__slide { margin-bottom: 20px; }
}


.wellness-fullwidth-img {
  width: 100%;
  padding-top: 350px;
}
.wellness-fullwidth-img img {
  width: 100%;
  height: auto;
  display: block;
}

.wellness-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  align-items: stretch;
}
.wellness-split__image { overflow: hidden; }
.wellness-split__image img { width: 100%; height: 100%; object-fit: cover; }
.wellness-split__content {
  background: var(--cream-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
}


.events-new {
  background: var(--navy-dark);
  padding-bottom: 120px;
}
.events-new__text {
  padding: 100px 40px 60px;
  text-align: center;
}
.events-new__img {
  max-width: 1440px;
  margin: 0 auto -240px;
  padding: 0 40px;
  position: relative;
  z-index: 10;
}
.events-new__img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}


.events-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.events-section__bg { position: absolute; inset: 0; z-index: 0; }
.events-section__bg img { width: 100%; height: 100%; object-fit: cover; }
.events-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 28, 56, 0.55);
  z-index: 1;
}
.events-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 40px;
  max-width: 900px;
}


.etro-philosophy {
  background: var(--navy-dark);
  padding: 60px 0;
  text-align: center;
}
.etro-philosophy p {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.4;
  padding: 0 40px;
}

.etro-products {
  padding: 100px 0 0;
  margin-bottom: -200px;
  position: relative;
  z-index: 10;
}


.etro-mimari {
  background: url('../images/020ca41a.webp') center/cover no-repeat;
  padding: 100px 0 100px;
}
.etro-mimari__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
.etro-mimari__image img {
  width: 100%;
  height: auto;
  display: block;
}
.etro-mimari__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.etro-suit-types__cards-wrap {
  overflow: hidden;
  padding: 0 40px;
  position: relative;
}
.suit-nav { display: none; }
.etro-suit-types__track {
  display: flex;
  gap: 24px;
  will-change: transform;
}
.etro-suit-card {
  flex: 0 0 38%;
}
.etro-suit-card__img {
  overflow: hidden;
}
.etro-suit-card__img img {
  width: 100%;
  height: auto;
  display: block;
}
.etro-suit-card__title {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--navy);
  margin-top: 16px;
  font-weight: 400;
}
.etro-suit-card__desc {
  font-size: 14px;
  color: #777;
  margin-top: 8px;
  line-height: 1.6;
}


.etro-services {
 background:url(../images/020ca41a.webp) center / cover no-repeat;
 padding: 100px 0;
}
.etro-services__intro {
  max-width: 640px;
}
.etro-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.etro-service-card {
  background: var(--cream);
  border-radius: 6px;
  padding: 36px 32px;
}
.etro-service-card__icon {
  margin-bottom: 24px;
}
.etro-service-card__title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 12px;
}
.etro-service-card__desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.product-item__image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-bottom: 12px;
}
.product-item__image img { width: 100%; height: 100%; object-fit: contain; }
.product-item__name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--navy);
  text-align: center;
}

.etro-dark-quote {
  background: #2d0010;
  padding: 100px 40px;
  text-align: center;
}
.etro-dark-quote .section-title {
  color: var(--gold-light);
  max-width: 800px;
  margin: 0 auto;
}
.etro-dark-quote .section-subtitle {
  color: rgba(255,255,255,0.75);
  max-width: 700px;
  margin: 20px auto 0;
}

.investment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 48px;
}
.investment-grid__item {
  background: var(--cream);
  border-radius: 3px;
  padding: 32px;
}
.investment-grid__value {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 8px;
}
.investment-grid__label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.investment-grid__desc { font-size: 14px; color: var(--gray); margin-top: 8px; }

.room-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.room-plan__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--cream);
  margin-bottom: 16px;
  background: var(--cream-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.room-plan__image img { width: 100%; height: 100%; object-fit: cover; }
.room-plan__type {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.room-plan__name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--navy);
  margin: 6px 0;
}
.room-plan__size { font-size: 14px; color: var(--gray); }


.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 32px;
}
.feature-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream-light);
  padding: 20px 24px;
  gap: 8px;
  align-items: start;
  border-radius: 2px;
}
.feature-item__label { font-size: 13px; font-weight: 500; color: var(--gold); }
.feature-item__value { font-size: 14px; color: var(--navy); }


.lifestyle-intro-image {
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  margin-top: 60px;
}
.lifestyle-intro-image img { width: 100%; height: 100%; object-fit: cover; }

.dining-section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.dining-section-card { position: relative; }
.dining-section-card__image {
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-bottom: 16px;
}
.dining-section-card__image img { width: 100%; height: 100%; object-fit: cover; }
.dining-section-card__name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 8px;
}
.dining-section-card__desc { font-size: 14px; line-height: 1.6; color: var(--gray); }

.brands-section {
  background: var(--cream-light);
  padding: 100px 0;
}
.brands-image {
  width: 100%;
  aspect-ratio: 16/8;
  overflow: hidden;
  margin-top: 48px;
}

 body.home .mobile-menu { background: #631736; }
.brands-image img { width: 100%; height: 100%; object-fit: cover; }
.gallery-slide--mobile-only { display:none; }
.performance-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8px;
  margin-top: 48px;
}
.performance-grid img { width: 100%; height: 100%; object-fit: cover; }
.performance-grid__main { aspect-ratio: 16/9; }
.performance-grid__side {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.performance-grid__side img { aspect-ratio: 16/9; flex: 1; }

body.home .section-title { color: #631736; }

.lifestyle-fullwidth {
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  position: relative;
  margin-top: 400px;
}
.lifestyle-fullwidth img { width: 100%; height: 100%; object-fit: cover; }
.lifestyle-fullwidth__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,28,56,0.35);
}
.lifestyle-fullwidth__text {
  position: absolute;
  bottom: 60px;
  left: 40px;
  right: 40px;
  max-width: 1440px;
  margin: 0 auto;
}


.contact-hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 40px 80px;
  max-width: 1440px;
  margin: 0 auto;
}
.contact-map {
  width: 100%;
  aspect-ratio: 16/6;
  overflow: hidden;
  position: relative;
}
.contact-map img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.contact-map__pin {
  position: absolute;
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  width: 20px;
  height: 20px;
  transform: rotate(-45deg);
}

body.home header { background: #631736; }

.faq-section {
  padding: 100px 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.faq-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-title {
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 300;
  color: var(--gold-dark);
  line-height: 1;
}
.faq-subtitle { font-size: 15px; color: var(--gray); margin-top: 12px; }

.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid #e0d5c8;
  padding: 24px 0;
}
.faq-item:first-child { border-top: 1px solid #e0d5c8; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}
.faq-question-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1.4;
}
.faq-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 1px;
  transition: transform var(--transition);
}
.faq-icon::before { width: 2px; height: 14px; left: 7px; top: 1px; }
.faq-icon::after  { width: 14px; height: 2px; left: 1px; top: 7px; }
.faq-item.open .faq-icon::before { transform: rotate(90deg); }

.faq-answer {
  font-size: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease, padding 0.35s ease;
  opacity: 0;
  padding-top: 0;
  line-height: 1.7;
  color: var(--navy);
  margin-top: 16px;
  padding-right: 32px;
}
.faq-item.open .faq-answer { max-height: 400px; opacity: 1; padding-top: 16px; }



.page-gallery {
  padding: 80px 0 0;
}
.hotel-gallery {
  padding-top: clamp(80px, 18vw, 280px);
  padding-bottom: 80px;
}
.page-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 48px;
}
.page-gallery__grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.page-gallery__grid .gallery-wide {
  grid-column: span 2;
  aspect-ratio: 8/3;
}


.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}
.gold-line--center { margin-left: auto; margin-right: auto; }


.text-navy  { color: var(--navy); }
.text-gold  { color: var(--gold); }
.text-white { color: var(--white); }
.text-gray  { color: var(--gray); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.flex  { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }


@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s ease both; }
.fade-up--delay-1 { animation-delay: 0.15s; }
.fade-up--delay-2 { animation-delay: 0.3s; }
.fade-up--delay-3 { animation-delay: 0.45s; }


@media (max-width: 1200px) {
  .nav__links { gap: 32px; }
  .nav__right  { gap: 32px; }
  .cta-card    { padding: 60px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 960px) {
  .nav__links, .nav__right { display: none; }
  .nav__hamburger { display: flex; }
  .split { grid-template-columns: 1fr !important; }
  .split--reverse { direction: ltr; }
  .intro-text-grid { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .cta-card { grid-template-columns: 1fr; }
  .cta-form__row { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .etro-section__inner { grid-template-columns: 1fr; }
  .wellness-split { grid-template-columns: 1fr; }
  .dining-grid { grid-template-rows: auto; }
  .dining-grid .dining-tall { grid-row: span 1; }
  .page-gallery__grid { grid-template-columns: 1fr 1fr; }
  .page-gallery__grid .gallery-wide { grid-column: span 2; }
  .features-grid { grid-template-columns: 1fr; }
  .room-plans { grid-template-columns: 1fr 1fr; }

  
  .etro-content-slider { grid-template-columns: 1fr; height: auto; padding: 0; }
  .ecs__left { height: auto; min-height: unset; }
  .ecs__right { height: 320px; }

  
  .etro-mimari__inner { grid-template-columns: 1fr; gap: 40px; }
  .etro-services__grid { grid-template-columns: 1fr 1fr; }

  
  .gastronomi-cards-grid { grid-template-columns: 1fr 1fr; }

  
  .gastronomi-section__text { padding: 80px 0 0; }
  .gastronomi-wide-img { margin-bottom: 0; }
  .gastronomi-section__cards { padding: 60px 0; }
  .gastronomi-cards-grid { margin-bottom: 0; }
  .wellness-fullwidth-img { padding-top: 48px; padding-bottom: 48px; }
  .cta-section { padding: 0 !important; }
}


@media (max-width: 768px) {
  
  .etro-mimari__text .section-title { margin-top: 0 !important; }

  .container { padding: 0 20px; }
  .split { gap: 24px; }
  .split--img-last .split__image { order: 2; }
  .split--img-last .split__content { order: 1; }
  .section { padding: 60px 0 !important; }
  .home-intro { padding-top: 60px !important; padding-bottom: 48px !important; }
  .section-subtitle { font-size: 19px; margin-top: 16px; line-height: 29px; }
  .section-eyebrow { font-size: 16px; line-height: 22px; }

	.split__image img{
		border-radius:4px;
	}
	
	 .peek-slider__btn { display: none }
	.etro-suit-card__title{
		font-size:28px !important;
		line-height:30px !important;
		color: #631736 !important;
		    font-family: var(--font-serif) !important;
	}
	
	.etro-suit-card__desc{
		font-size:15px !important;
		line-height:23px !important;
	}
	.seperator{
		object-fit:cover;
		        object-position: 40% 30% !important;
		
	}
  .stats-group-title { font-size: 14px; }
  .stats-group-sublabel { font-size: 12px; }
  .stat-value { font-size: 22px; }
  .stat-label { font-size: 13px; }
  .stats-grid { gap: 16px; }

  
  .hero__content { padding: 0 20px 60px; }

  
  .kulturel-section { padding: 48px 0 0; }
  .kulturel-section__text { margin-bottom: 32px; }
  .tagline { font-size: 18px; }

  
  .peek-slider__slide { flex: 0 0 78%; transform: none !important; opacity: 1 !important; }
.peek-slider__track {
   
    margin-left: -10px;
}
  
  .etro-section__inner { padding: 60px 20px; gap: 40px; }
  .etro-section__highlight { font-size: 22px; }

  
  .podium-gallery-wrap { margin-top: 32px; overflow: hidden; }
  .podium-gallery { grid-template-rows: 160px 180px; grid-template-columns: repeat(4, 200px); }
  .podium-dots { justify-content: center; position: relative; z-index: 1; }

  
  .map-section { padding: 48px 0 0; }
  .map-image { margin-top: 32px; }

  
  .hotel-wide-photo { padding: 0 20px 48px !important; }
  .hotel-wide-photo__inner { aspect-ratio: 4/3 !important; }
  .hotel-rooms { padding-bottom: 60px !important; }
  .gastronomi-section__text { padding: 48px 0 48px; }
  .gastronomi-wide-img { margin: 32px auto 0; padding: 0 20px; }
  .gastronomi-section__cards { padding: 40px 0 60px; }
  .gastronomi-cards-grid { grid-template-columns: 1fr; margin-bottom: 0; }
  .wellness-fullwidth-img { padding-top: 48px; padding-bottom: 48px; }
  .cta-section { padding: 0 !important; }
  .events-new { padding-bottom: 40px; }
  .events-new__text { padding: 48px 20px 32px; }
  .events-new__img { margin: 0 auto; padding: 0 20px; }
  .hotel-gallery { padding-top: 60px !important; padding-bottom: 60px !important; }

  
  .ecs__peek { display: none; }
  .ecs__text-wrap { padding: 32px 24px 0; }
  .ecs__right { height: 260px; }
  .etro-services { padding: 60px 0; }
  .etro-services__grid { grid-template-columns: 1fr 1fr; }
  .etro-products { padding: 48px 0 0; margin-bottom: 0; }
  .etro-mimari { padding: 48px 0; margin-top: 50px; }
  .etro-mimari__inner { padding: 0 20px; gap: 32px; }
  .etro-suit-card { flex: 0 0 78%; }
  .etro-suit-types__cards-wrap { padding: 0 20px; }
  .suit-nav { display: flex; justify-content: center; align-items: center; gap: 16px; padding: 20px 0 0; }
  .suit-nav__btn { width: 48px; height: 48px; background: none; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; }
  .suit-nav__btn img { width: 28px; height: 28px; display: block; }
  .suit-nav__btn--prev img { transform: scaleX(-1); }

  
  .lifestyle-fullwidth { margin-top: 48px !important; }
  .rooms-grid { margin-bottom: 0 !important; }
  .lifestyle-podium-intro { padding-bottom: 48px !important; }
  .lifestyle-podium-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .lifestyle-img-wrap { padding: 0 20px !important; }
  .lifestyle-woman-wrap { height: 280px !important; }
  .room-card__image { height: 280px; }

  
  .contact-hero-content { padding: 100px 20px 48px; }
  .contact-map { aspect-ratio: 4/3; }
  .faq-section { padding: 60px 20px; }
  .faq-title { font-size: 48px; }
  .faq-question-text { font-size: 18px; }
}

@media (max-width: 640px) {
	span.section-eyebrow {
    margin: 0px;
}
	
	 .separator-logo-mobile { display: block; }
	
	.gallery-slide--mobile-only { display:block; }
	
	
	.etro-mimari__text span.section-eyebrow{
		color:white !important;
	}
  .hero__title { font-size: 36px; }
  .section-title { font-size: 35px; line-height: 41px; }
  .three-col { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; padding: 20px; }
  .footer__legal { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .cta-card { padding: 40px 24px; }
  .gallery-scroll__item--wide  { width: 340px; height: 220px; }
  .gallery-scroll__item--std   { width: 280px; height: 180px; }
  .podium-gallery { grid-template-rows: 130px 150px; grid-template-columns: repeat(4, 170px); }
  .performance-grid { grid-template-columns: 1fr; }
  .dining-section-grid { grid-template-columns: 1fr; }
  .room-plans { grid-template-columns: 1fr; }
  .investment-grid { grid-template-columns: 1fr; }
  .page-gallery__grid { grid-template-columns: 1fr; }
  .page-gallery__grid .gallery-wide { grid-column: span 1; aspect-ratio: 4/3; }
#ecsSection .ecs__text-wrap {
    margin-bottom: -70px;
}
  
  .peek-slider__slide { flex: 0 0 90%; }

  
  .stat-value { font-size: 20px; }
  .stat-label { font-size: 12px; }

  
  .section { padding: 48px 0 !important; }
  .kulturel-section { padding: 40px 0 0; }

  
  .gastronomi-cards-grid { grid-template-columns: 1fr; }
  .wellness-split__content { padding: 40px 24px; }
	.etro-service-card__title{
		font-size:24px !important;
		line-height:30px !important;
		color:#631736 !important;
		
	}
	
	.site-footer{
background:	#631736
	}
	
	.nav-links a{
		display:none
	}
	
	.peek-slider__slide img {
		height:600px;
	}
	
	    .gallery-section-eyebrow {
        font-size: 16px;
        line-height: 22px;
        text-align: left !important;
			font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
			
    }
	
	    .gallery-section-title {
        font-size: 35px;
        line-height: 41px;
        text-align: left;
			    font-family: var(--font-serif) !important;
	font-weight: 300;
    color: var(--navy) !important;
    }
	.etro-service-card__desc{
		font-size:14px;
		line-height:28px;
	}
	.etro-service-card__icon svg{
		width:50px;
		height:50px
	}
  
  .etro-services__grid {
    grid-template-columns: repeat(2, 1fr);
}
  .etro-service-card { padding: 28px 24px; }
  .ecs__right { height: 220px; }

  
  .contact-map { aspect-ratio: 1/1; }
  .faq-title { font-size: 36px; }
  .faq-section { padding: 48px 20px; }

  
  .room-card__image { height: 220px; }
}
