:root {
  --ink:#172536;
  --navy:#20354a;
  --navy2:#294861;
  --paper:#eef0ec;
  --paper2:#dde4e1;
  --mist:#dde4e1;
  --rust:#c56a4d;
  --rust2:#a94f36;
  --cream:#f7f5ef;
  --sage:#aab9ad;
  --blue:#557891;
  --line:#1d30401c;
  --white:#fffdf8;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
}
body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:'Inter',Arial,Helvetica,sans-serif;
}
a {
  text-decoration:none;
  color:inherit;
}
button {
  font:inherit;
}
.nav {
  position:fixed;
  z-index:50;
  top:0;
  left:0;
  right:0;
  padding:15px 30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(23,37,54,.94);
  color:#fff;
  backdrop-filter:blur(14px);
  border-bottom:1px solid #ffffff12;
}
.brandStack {
  display:flex;
  align-items:center;
  gap:12px;
}
.gov,.sub {
  font-size:10px;
  font-weight:800;
  letter-spacing:.055em;
}
.sub {
  opacity:.92;
  padding-left:12px;
  border-left:1px solid #fff5;
}
.links {
  display:flex;
  gap:22px;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
}
.links a:hover {
  color:#e5a17f;
}
.navbtn {
  background:var(--rust);
  padding:11px 15px;
  font-size:10px;
  font-weight:800;
}
.hamburger {
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:0;
  cursor:pointer;
  padding:6px;
}
.hamburger span {
  width:24px;
  height:2px;
  background:#fff;
  display:block;
}
.langSelect {
  background:#17253666;
  border:1px solid #ffffff35;
  color:#fff;
  font-size:11px;
  font-weight:800;
  padding:8px 10px;
  border-radius:4px;
  cursor:pointer;
  margin-left:12px;
}
.langSelect option {
  color:#172536;
  background:#fff;
}
.hero {
  min-height:790px;
  padding:150px 7vw 80px;
  display:flex;
  align-items:end;
  color:#fff;
  background:linear-gradient(90deg,#172536f5 0%,#172536e8 60%,#17253680 100%),url('../assets/img/gallery/exterior.jpg');
  background-size:cover;
  background-position:center 68%;
  background-repeat:no-repeat;
  position:relative;
  overflow:hidden;
}
.hero:after {
  content:"HARMONİ";
  position:absolute;
  right:-4vw;
  bottom:-45px;
  font:700 22vw/1 'Fraunces',Georgia;
  color:#ffffff06;
  letter-spacing:-.08em;
}
.heroInner {
  max-width:850px;
  position:relative;
  z-index:2;
}
@keyframes heroIn {
  from {
    opacity:0;
    transform:translateY(24px);
  }
  to {
    opacity:1;
    transform:none;
  }
}
.hero .heroBrands,.hero h1,.hero .lead,.hero .actions {
  opacity:0;
  animation:heroIn .9s cubic-bezier(.16,1,.3,1) forwards;
}
.hero .heroBrands {
  animation-delay:.05s;
}
.hero h1 {
  animation-delay:.18s;
}
.hero .lead {
  animation-delay:.34s;
}
.hero .actions {
  animation-delay:.5s;
}
@keyframes ctaPulse {
  0%,100% {
    box-shadow:0 0 0 0 #c56a4d55;
  }
  50% {
    box-shadow:0 0 0 9px #c56a4d00;
  }
}
.hero .btn.rust {
  animation:ctaPulse 2.6s ease-in-out 1.4s infinite;
}
.hero .btn.rust:hover {
  animation-play-state:paused;
}
.scrollCue {
  position:absolute;
  left:50%;
  bottom:24px;
  transform:translateX(-50%);
  width:26px;
  height:42px;
  border:2px solid #ffffff55;
  border-radius:14px;
  display:flex;
  justify-content:center;
  padding-top:8px;
  z-index:3;
}
.scrollCue span {
  width:4px;
  height:8px;
  border-radius:2px;
  background:#fff;
  animation:scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% {
    opacity:1;
    transform:translateY(0);
  }
  70% {
    opacity:0;
    transform:translateY(14px);
  }
  100% {
    opacity:0;
    transform:translateY(0);
  }
}
.eyebrow {
  border-left:3px solid var(--rust);
  padding-left:12px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.eyebrow span {
  display:block;
  font-weight:400;
  opacity:.72;
  margin-top:5px;
}
.heroBrands {
  display:flex;
  flex-direction:column;
  gap:4px;
}
.heroBrands span {
  font-size:11px;
  font-weight:800;
  letter-spacing:.05em;
  opacity:.85;
}
.heroBrands span+span {
  opacity:.65;
}
h1 {
  font:500 clamp(60px,9vw,125px)/.88 'Fraunces',Georgia,serif;
  letter-spacing:-.065em;
  margin:22px 0;
}
.accent {
  color:#e39a80;
  font-style:normal;
}
.lead {
  max-width:680px;
  font-size:17px;
  line-height:1.7;
  color:#fdf8ec;
  text-shadow:0 2px 12px #17253666;
}
.actions {
  display:flex;
  gap:10px;
  margin-top:30px;
  flex-wrap:wrap;
}
.btn {
  background:none;
  appearance:none;
  -webkit-appearance:none;
  border:1px solid #ffffff66;
  padding:14px 19px;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  cursor:pointer;
  transition:transform .3s cubic-bezier(.16,1,.3,1),box-shadow .3s ease,background .25s ease,color .25s ease;
  display:inline-block;
}
.btn:hover {
  transform:translateY(-3px);
  box-shadow:0 10px 25px #17253630;
}
.btn.rust {
  background:var(--rust);
  border-color:var(--rust);
  color:#fff;
}
.btn.blue {
  background:var(--blue);
  border-color:var(--blue);
  color:#fff;
}
.btn.light {
  color:#fff;
}
.btn.light:hover {
  background:#fff;
  color:var(--ink);
}
.cta .btn.light {
  background:var(--cream);
  border-color:var(--cream);
  color:var(--navy);
}
.cta .btn.light:hover {
  background:#fff;
  border-color:#fff;
  color:var(--navy);
}
.navbtn {
  transition:transform .3s cubic-bezier(.16,1,.3,1);
}
.navbtn:hover {
  transform:translateY(-2px);
}
.wrap {
  width:min(1180px,90%);
  margin:auto;
}
section {
  padding:105px 0;
}
.label {
  font-size:10px;
  letter-spacing:.14em;
  font-weight:900;
  color:var(--rust);
  text-transform:uppercase;
  margin-bottom:16px;
}
.title {
  font:500 clamp(44px,6vw,76px)/.95 'Fraunces',Georgia;
  letter-spacing:-.05em;
  margin:0;
}
.muted {
  color:#665f56;
  line-height:1.8;
}
.intro {
  background:var(--cream);
  border-bottom:1px solid var(--line);
}
.introGrid {
  display:grid;
  grid-template-columns:.6fr 1.4fr;
  gap:70px;
  align-items:start;
}
#foto .introGrid {
  grid-template-columns:1fr;
  gap:35px;
}
#foto .introGrid > div:first-child {
  max-width:640px;
}
.intro p {
  font-size:16px;
}
.photoGrid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.photo {
  aspect-ratio:1;
  position:relative;
  overflow:hidden;
  cursor:pointer;
  background:linear-gradient(135deg,#7d6a5b,#c9b9a2 55%,#65584e);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.photo:nth-child(2),.photo:nth-child(8),.photo:nth-child(14) {
  background:linear-gradient(135deg,#aa6a4f,#ddd0bf);
}
.photo:nth-child(3),.photo:nth-child(9),.photo:nth-child(15) {
  background:linear-gradient(135deg,#4f4a43,#b99b78);
}
.photo:nth-child(4),.photo:nth-child(10) {
  background:linear-gradient(135deg,#8c6e5b,#d7c9b7);
}
.photo:nth-child(5),.photo:nth-child(11) {
  background:linear-gradient(135deg,#6b5a4a,#c2ad8e);
}
.photo:nth-child(6),.photo:nth-child(12) {
  background:linear-gradient(135deg,#59524a,#b3a48c);
}
.photo:nth-child(7),.photo:nth-child(13) {
  background:linear-gradient(135deg,#7d6a5b,#c9b9a2 55%,#65584e);
}
.photo:before {
  content:"HARMONİ";
  position:absolute;
  inset:auto 12px 10px;
  font:700 18px 'Fraunces',Georgia;
  color:#fff9;
}
.photo:after {
  content:"⤢";
  position:absolute;
  right:10px;
  top:10px;
  width:26px;
  height:26px;
  border-radius:50%;
  background:#171512bb;
  color:#fff;
  font-size:13px;
  display:grid;
  place-items:center;
  opacity:0;
  transition:opacity .25s ease;
}
.photo:hover:after {
  opacity:1;
}
.photo small {
  position:absolute;
  left:12px;
  top:12px;
  background:#171512bb;
  color:#fff;
  padding:7px 9px;
  font-size:9px;
  font-weight:800;
  text-transform:uppercase;
}
.galleryOuter {
  display:flex;
  flex-direction:column;
  gap:18px;
}
.galleryWrap {
  display:flex;
  align-items:center;
  gap:14px;
}
.galViewport {
  overflow:hidden;
  flex:1;
}
.galTrack {
  display:flex;
  align-items:flex-start;
  transition:transform .5s cubic-bezier(.16,1,.3,1),height .4s ease;
}
.galTrack .photoGrid {
  flex:0 0 100%;
  width:100%;
}
.galArrow {
  flex:0 0 auto;
  width:46px;
  height:46px;
  border-radius:50%;
  border:1px solid var(--sage);
  background:#fff;
  color:var(--navy);
  font-size:22px;
  cursor:pointer;
  display:grid;
  place-items:center;
  transition:background .2s ease,transform .2s ease,opacity .2s ease;
}
.galArrow:hover {
  background:var(--navy);
  color:#fff;
}
.galArrow:disabled {
  opacity:.35;
  cursor:default;
  pointer-events:none;
}
.galDots {
  display:flex;
  justify-content:center;
  gap:9px;
}
.galDot {
  width:9px;
  height:9px;
  border-radius:50%;
  background:#20354a2e;
  border:0;
  padding:0;
  cursor:pointer;
  transition:background .2s ease,transform .2s ease;
}
.galDot:hover {
  background:#20354a55;
}
.galDot.active {
  background:var(--rust);
  transform:scale(1.3);
}
@media(max-width:850px) {
  .galleryWrap {
    position:relative;
    gap:0;
  }
  .galArrow {
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:3;
    width:36px;
    height:36px;
    font-size:17px;
    background:#fffffff2;
    box-shadow:0 4px 16px #0004;
    border-color:#ffffff;
  }
  .galArrow:hover {
    background:var(--navy);
  }
  .galPrev {
    left:6px;
  }
  .galNext {
    right:6px;
  }
}
.details {
  background:var(--navy);
  color:#fff;
}
.detailHead {
  display:grid;
  grid-template-columns:.7fr 1.3fr;
  gap:70px;
  margin-bottom:55px;
}
.details .title {
  color:#fff;
}
.detailText {
  color:#ffffffa8;
  line-height:1.8;
}
.detailGrid {
  display:grid;
  grid-template-columns:1fr 1fr;
}
.detail {
  padding:28px 35px 28px 0;
  border-top:1px solid #fff2;
}
.detail:last-child:nth-child(odd) {
  grid-column:1 / -1;
  padding-right:0;
}
.detail:nth-child(even) {
  padding-left:35px;
  border-left:1px solid #fff2;
}
.detail h3 {
  font:500 26px 'Fraunces',Georgia;
  margin:7px 0 0;
  cursor:pointer;
  position:relative;
  padding-right:34px;
}
.detail h3:after {
  content:"+";
  position:absolute;
  right:0;
  top:-2px;
  font-size:24px;
  color:var(--rust);
  font-weight:400;
}
.detail.open h3:after {
  content:"−";
}
.detail p {
  color:#ffffffb5;
  line-height:1.75;
  font-size:14px;
  margin:15px 0 0;
  display:none;
}
.detail.open p {
  display:block;
}
.detailList {
  color:#ffffffb5;
  line-height:1.75;
  font-size:14px;
  margin:10px 0 0;
  padding-left:18px;
  display:none;
}
.detail.open .detailList {
  display:block;
}
.num {
  font-size:10px;
  color:#d77a57;
  font-weight:900;
  letter-spacing:.1em;
}
.tour {
  background:var(--paper2);
}
.tourBox {
  display:grid;
  grid-template-columns:1fr;
}
.tourBox > * {
  min-width:0;
}
.tourCopy {
  background:var(--navy);
  color:#fff;
  padding:60px;
}
.tourCopy h2 {
  font:500 58px/1 'Fraunces',Georgia;
  margin:0 0 20px;
}
.tourCopy p {
  color:#ffffffad;
  line-height:1.75;
  max-width:640px;
}
.tourVisual {
  width:100%;
  aspect-ratio:16/9;
  position:relative;
  background:linear-gradient(180deg,#17253610,#17253675),url('../assets/img/tour_preview.jpg');
  background-size:cover;
  background-position:center 40%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.tourVisual:after {
  content:"360°";
  position:absolute;
  right:25px;
  top:25px;
  background:#171512d9;
  color:#fff;
  padding:9px 11px;
  font-size:10px;
  font-weight:800;
}
.play {
  width:88px;
  height:88px;
  border-radius:50%;
  background:#fff;
  color:var(--ink);
  display:grid;
  place-items:center;
  font-size:25px;
  box-shadow:0 15px 40px #0005;
}
.rooms {
  background:var(--mist);
}
.roomGrid {
  display:grid;
  grid-template-columns:1fr;
  gap:0;
}
.roomGrid > * {
  min-width:0;
}
.roomVisual {
  width:100%;
  aspect-ratio:16/9;
  background:linear-gradient(135deg,#69594d,#cbb99f 52%,#6c5c50);
  background-size:cover;
  background-position:center;
  position:relative;
}
.roomBadge {
  position:absolute;
  left:20px;
  bottom:20px;
  background:#171512cc;
  color:#fff;
  padding:10px 12px;
  font-size:10px;
  font-weight:800;
}
.roomCard {
  background:var(--cream);
  padding:50px;
}
.roomCard h3 {
  font:500 48px/1.02 'Fraunces',Georgia;
  margin:0 0 22px;
}
.checks {
  display:grid;
  grid-template-columns:1fr 1fr;
  border-top:1px solid var(--line);
  margin:25px 0;
  padding-top:20px;
}
.checks div {
  padding:8px 0;
  font-size:12px;
}
.checks div:before {
  content:"✓";
  color:var(--rust);
  font-weight:900;
  margin-right:8px;
}
.uni {
  background:#20354a;
  color:#fff;
}
.uniHead {
  display:flex;
  justify-content:space-between;
  gap:50px;
  align-items:end;
  margin-bottom:35px;
}
.uni .title {
  color:#fff;
}
.uni p {
  max-width:420px;
  color:#ffffffa8;
  line-height:1.7;
}
.tableWrap {
  overflow:auto;
}
.uni table {
  width:100%;
  border-collapse:collapse;
  min-width:700px;
}
.uni th {
  text-align:left;
  padding:14px;
  border-bottom:2px solid #fff3;
  color:#dc7954;
  font-size:10px;
  text-transform:uppercase;
}
.uni td {
  padding:15px 14px;
  border-bottom:1px solid #fff1;
  font-size:13px;
  color:#ffffffd0;
}
.uni tr:hover {
  background:#ffffff08;
}
.routeLink {
  display:inline-block;
  padding:9px 11px;
  background:var(--navy2);
  border:1px solid var(--navy2);
  color:#fff;
  font-size:10px;
  font-weight:800;
  transition:background .25s ease,border-color .25s ease;
}
.routeLink:hover {
  background:var(--blue);
  border-color:var(--blue);
}
.location {
  background:var(--cream);
}
.locGrid {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:45px;
  align-items:stretch;
}
.locCopy {
  padding-right:20px;
}
.t {
  background:#fff;
  border:1px solid var(--sage);
  padding:20px;
  border-radius:8px;
  min-width:0;
  transition:transform .25s cubic-bezier(.16,1,.3,1),box-shadow .25s ease,border-color .25s ease;
}
.t:hover {
  transform:translateY(-4px);
  box-shadow:0 14px 30px #17253622;
  border-color:var(--navy);
}
.t b {
  font-size:14px;
  color:var(--navy);
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
}
.t .tIcon {
  width:34px;
  height:34px;
  margin:0;
  border-radius:50%;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  color:#fff;
}
.t .tIcon svg {
  width:17px;
  height:17px;
}
.tIconWa {
  background:#25d366;
}
.tIconPhone {
  background:var(--navy);
}
.tIconMail {
  background:var(--rust);
}
.t span,.t a {
  display:block;
  color:#6b716f;
  font-size:11px;
  margin-top:5px;
}
.t a:hover {
  color:var(--blue);
}
.contact .contactList {
  display:flex;
  flex-direction:column;
}
.contact .t {
  background:none;
  border:none;
  border-radius:0;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px 2px;
  transition:padding-left .3s cubic-bezier(.16,1,.3,1),color .25s ease;
}
.contact .contactList > *:last-child {
  border-bottom:1px solid var(--line);
}
.contact .t:hover {
  transform:none;
  box-shadow:none;
  border-color:var(--line);
  padding-left:10px;
}
.contact .t b {
  flex:0 0 92px;
  flex-direction:row;
  align-items:center;
  gap:8px;
  font:400 10px 'Inter',sans-serif;
  letter-spacing:.07em;
  text-transform:uppercase;
  color:#8a8579;
}
.contact .t .tIcon {
  width:24px;
  height:24px;
}
.contact .t .tIcon svg {
  width:12px;
  height:12px;
}
.contact .t > span,.contact .t .tVals {
  text-align:left;
  min-width:0;
}
.contact .t > span,.contact .t .tVals a {
  font:500 14px 'Fraunces',Georgia;
  color:var(--ink);
  margin:0;
  word-break:break-word;
}
.contact .t .tVals {
  display:flex;
  flex-direction:column;
  gap:1px;
}
.contact .t a:hover {
  color:var(--rust);
}
.locFacts {
  display:grid;
  grid-template-columns:1fr 1fr;
  margin:32px 0 8px;
}
.locFact {
  padding:18px 20px 18px 0;
  border-top:1px solid var(--line);
}
.locFact:nth-child(even) {
  padding-left:20px;
  border-left:1px solid var(--line);
}
.locFact b {
  display:block;
  font:500 24px/1 'Fraunces',Georgia;
  letter-spacing:-.01em;
  color:var(--ink);
}
.locFact b small {
  font:400 11px 'Inter',sans-serif;
  color:var(--rust);
  letter-spacing:.04em;
  margin-left:2px;
}
.locFact span {
  display:block;
  margin-top:6px;
  font-size:10px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#8a8579;
  line-height:1.4;
}
.map {
  min-height:510px;
  position:relative;
  overflow:hidden;
  border-radius:7px;
  border:1px solid #20354a22;
}
.map iframe {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
.mapCard {
  position:absolute;
  left:22px;
  bottom:22px;
  background:#fffdf8;
  padding:20px;
  max-width:310px;
  box-shadow:0 10px 30px #17253618;
  border-left:4px solid var(--blue);
  z-index:2;
}
.mapCard b {
  display:block;
  margin-bottom:5px;
}
.mapCard span {
  font-size:12px;
  color:#6a716d;
}
.mapCard b {
  display:block;
  margin-bottom:5px;
}
.mapCard span {
  font-size:12px;
  color:#6a635a;
}
.cafe {
  background:var(--navy);
  color:#fff;
  padding:0;
}
.cafeVisual {
  width:100%;
  display:block;
  aspect-ratio:1465/588;
  background-position:center;
  background-repeat:no-repeat;
}
.cafeCopy {
  padding:60px 0 90px;
  max-width:720px;
}
.cafeIntro {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:28px;
}
.cafeCopy h2 {
  font:500 57px/1 'Fraunces',Georgia;
  margin:0 0 20px;
}
.cafeCopy p {
  line-height:1.75;
  color:#ffffffad;
}
.chips {
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin:25px 0;
}
.chip {
  background:var(--rust);
  color:#fff;
  padding:9px 13px;
  border-radius:3px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.02em;
}
.cta {
  padding:110px 0;
  background:linear-gradient(135deg,#20354a,#3c6175);
  color:#fff;
  text-align:center;
}
.cta .title {
  color:#fff;
}
.cta p {
  max-width:560px;
  margin:20px auto 30px;
  color:#ffffffb8;
  line-height:1.7;
}
footer {
  background:#141311;
  color:#fff;
  padding:55px 0 25px;
}
.foot {
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1fr;
  gap:35px;
}
.foot h3 {
  font:500 35px 'Fraunces',Georgia;
  margin:0 0 8px;
}
.foot b {
  font-size:10px;
  letter-spacing:.12em;
}
.foot p,.foot a {
  font-size:12px;
  line-height:1.7;
  color:#ffffff99;
}
.copy {
  border-top:1px solid #fff1;
  margin-top:35px;
  padding-top:20px;
  color:#fff5;
  font-size:10px;
}
.contactBubble {
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:80;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:8px;
}
.contactBubble .bubble {
  width:48px;
  height:48px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--navy);
  color:#fff;
  border:1px solid #fff4;
  box-shadow:0 8px 25px #17253630;
  font-weight:800;
  font-size:13px;
}
.contactBubble .bubble:hover {
  background:var(--rust);
}
.contactBubble .bubble.main {
  background:#25d366;
  width:54px;
  height:54px;
}
.contactBubble .bubble.main:hover {
  background:#1fb959;
}
.contactBubble .bubble svg {
  width:20px;
  height:20px;
}
.contactBubble .bubble.main svg {
  width:24px;
  height:24px;
}
.contactBubble .tip {
  position:absolute;
  right:62px;
  bottom:5px;
  background:#fffdf8;
  color:var(--navy);
  padding:8px 11px;
  font-size:10px;
  white-space:nowrap;
  box-shadow:0 5px 18px #17253620;
  border:1px solid var(--line);
}
.modal {
  display:none;
  position:fixed;
  inset:0;
  background:#000b;
  z-index:100;
  align-items:center;
  justify-content:center;
  padding:25px;
}
.modal.show {
  display:flex;
}
.modalBox {
  background:var(--cream);
  max-width:900px;
  width:100%;
  max-height:88vh;
  overflow:auto;
  padding:35px;
  position:relative;
}
.close {
  position:absolute;
  right:15px;
  top:15px;
  border:0;
  background:var(--ink);
  color:#fff;
  width:35px;
  height:35px;
  cursor:pointer;
}
.modal h2 {
  font:500 44px 'Fraunces',Georgia;
  margin-top:0;
}
.modal p {
  line-height:1.75;
  color:#5f584f;
}
.modalGallery {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
}
.modalGallery .photo {
  height:180px;
}
.lightbox {
  display:none;
  position:fixed;
  inset:0;
  z-index:120;
  background:#0d1620ee;
  align-items:center;
  justify-content:center;
}
.lightbox.show {
  display:flex;
}
.lbStage {
  width:min(1100px,84vw);
  height:min(720px,78vh);
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
  background-color:#0d1620;
  border-radius:6px;
  box-shadow:0 30px 80px #0009;
  position:relative;
}
.lbStage:before {
  content:"HARMONİ";
  position:absolute;
  inset:auto 18px 16px;
  font:700 34px 'Fraunces',Georgia;
  color:#fff9;
}
.lbClose {
  position:absolute;
  top:22px;
  right:26px;
  width:38px;
  height:38px;
  border-radius:50%;
  border:1px solid #ffffff40;
  background:#ffffff14;
  color:#fff;
  font-size:18px;
  cursor:pointer;
  display:grid;
  place-items:center;
  z-index:2;
}
.lbClose:hover {
  background:#ffffff2a;
}
.lbArrow {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:54px;
  height:54px;
  border-radius:50%;
  border:1px solid #ffffff40;
  background:#ffffff14;
  color:#fff;
  font-size:28px;
  cursor:pointer;
  display:grid;
  place-items:center;
  z-index:2;
  transition:background .2s ease,transform .2s ease;
}
.lbArrow:hover {
  background:#ffffff2a;
  transform:translateY(-50%) scale(1.06);
}
.lbPrev {
  left:2vw;
}
.lbNext {
  right:2vw;
}
.lbCount {
  position:absolute;
  top:26px;
  left:50%;
  transform:translateX(-50%);
  color:#fff;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  opacity:.8;
}
@media(max-width:850px) {
  .lbArrow {
    width:42px;
    height:42px;
    font-size:22px;
  }
  .lbStage {
    width:92vw;
    height:56vh;
  }
}
.accordion {
  border-top:1px solid var(--line);
}
.acc {
  border-bottom:1px solid var(--line);
  padding:18px 0;
  cursor:pointer;
}
.acc h4 {
  margin:0;
  display:flex;
  justify-content:space-between;
}
.acc p {
  display:none;
  margin:12px 0 0;
}
.acc.open p {
  display:block;
}
.acc .accBody {
  display:none;
}
.acc.open .accBody {
  display:block;
}
.accPhotos {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
  margin-top:16px;
}
.accPhoto {
  aspect-ratio:1;
  border-radius:4px;
  background-size:cover;
  background-position:center;
  cursor:pointer;
  overflow:hidden;
}
.accAmenities {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 16px;
  margin:20px 0;
}
.accAmenity {
  display:flex;
  align-items:center;
  gap:9px;
  font-size:12px;
  color:#5f584f;
}
.accAmenity svg {
  width:16px;
  height:16px;
  flex:0 0 auto;
  color:var(--rust);
}
.accInquireBtn {
  margin-top:4px;
}
.accContact {
  display:none;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:16px;
}
.accContact.show {
  display:grid;
}
.tilt-a,.tilt-b {
  position:relative;
  z-index:2;
  margin-top:-46px;
}
.tilt-a {
  clip-path:polygon(0 46px,100% 0,100% 100%,0 100%);
}
.tilt-b {
  clip-path:polygon(0 0,100% 46px,100% 100%,0 100%);
}
@media(max-width:1320px) {
  .brandStack {
    display:block;
  }
  .brandStack .sub {
    border-left:0;
    padding-left:0;
    margin-top:4px;
  }
  .hamburger {
    display:flex;
  }
  .links {
    display:none;
    position:fixed;
    top:58px;
    left:0;
    right:0;
    height:calc(100vh - 58px);
    background:var(--navy);
    flex-direction:column;
    padding:20px 30px 30px;
    overflow:auto;
    gap:0;
    z-index:60;
  }
  .links.open {
    display:flex;
  }
  .links a {
    padding:14px 0;
    border-bottom:1px solid #ffffff18;
    font-size:13px;
  }
}
@media(max-width:850px) {
  .heroBrands span {
    width:100%;
  }
  .contact > .wrap > div {
    grid-template-columns:1fr!important;
  }
  .contact .contactList {
    margin-top:24px;
  }
  .introGrid,.detailHead,.detailGrid,.tourBox,.roomGrid,.locGrid,.foot {
    grid-template-columns:1fr;
  }
  .galleryOuter {
    margin-top:35px;
  }
  .photoGrid {
    grid-template-columns:1fr 1fr;
  }
  .tourVisual {
    min-height:380px;
  }
  .detail:nth-child(even) {
    padding-left:0;
    border-left:0;
  }
  .detail {
    padding-right:0;
  }
  .tourCopy,.cafeCopy,.roomCard {
    padding:35px;
  }
  .cafeIntro {
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
  }
  .roomVisual {
    min-height:390px;
  }
  .uniHead {
    display:block;
  }
  .tableWrap {
    overflow:visible;
  }
  .uni table {
    display:block;
    width:100%;
    min-width:0;
  }
  .uni thead {
    display:none;
  }
  .uni tbody {
    display:flex;
    flex-direction:column;
    gap:10px;
  }
  .uni tr {
    display:grid;
    grid-template-columns:1fr 1fr;
    column-gap:10px;
    row-gap:6px;
    background:#ffffff0a;
    border:1px solid #ffffff1f;
    border-radius:8px;
    padding:14px 16px;
  }
  .uni td {
    display:block;
    padding:0;
    border:0;
    font-size:12px;
    color:#ffffffa8;
  }
  .uni td:nth-child(1) {
    grid-column:1 / -1;
    font-size:14px;
    font-weight:700;
    color:#fff;
  }
  .uni td:nth-child(3) {
    text-align:right;
  }
  .uni td:nth-child(4) {
    grid-column:1 / -1;
    margin-top:6px;
  }
  .uni .routeLink {
    display:block;
    text-align:center;
    padding:10px;
  }
  .locCopy {
    padding-right:0;
    padding-bottom:35px;
  }
  .hero {
    padding-left:5vw;
    padding-right:5vw;
  }
  .hero:after {
    font-size:28vw;
  }
  .tilt-a,.tilt-b {
    margin-top:-24px;
  }
  .tilt-a {
    clip-path:polygon(0 24px,100% 0,100% 100%,0 100%);
  }
  .tilt-b {
    clip-path:polygon(0 0,100% 24px,100% 100%,0 100%);
  }
}
@media(max-width:600px) {
  .accPhotos {
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }
  .accContact {
    grid-template-columns:1fr;
  }
  .accContact .t b {
    flex-direction:row;
  }
  .contactBubble .bubble:not(.main) {
    display:none;
  }
  .contactBubble .tip {
    display:none;
  }
  .contactBubble {
    right:14px;
    bottom:14px;
  }
  .contactBubble .bubble.main {
    width:44px;
    height:44px;
  }
  .contactBubble .bubble.main svg {
    width:20px;
    height:20px;
  }
}
@media(max-width:480px) {
  .locFact b {
    font-size:21px;
  }
  h1 {
    font-size:clamp(38px,13vw,58px);
  }
  .lead {
    font-size:15px;
  }
  .title {
    font-size:clamp(34px,9vw,52px);
  }
  .tourCopy h2,.cafeCopy h2 {
    font-size:38px;
  }
  .roomCard h3 {
    font-size:34px;
  }
  .roomCard {
    padding:26px;
  }
  .tourCopy,.cafeCopy {
    padding:26px;
  }
  section {
    padding:70px 0;
  }
  .photoGrid {
    grid-template-columns:1fr 1fr;
    gap:8px;
  }
  .galArrow {
    width:32px;
    height:32px;
    font-size:15px;
  }
  .checks {
    grid-template-columns:1fr;
  }
  .lbArrow {
    width:36px;
    height:36px;
    font-size:19px;
  }
  .lbPrev {
    left:6px;
  }
  .lbNext {
    right:6px;
  }
}
.nav {
  transition:padding .35s ease,box-shadow .35s ease;
}
.nav.scrolled {
  padding:10px 30px;
  box-shadow:0 10px 30px #00000025;
}
.reveal {
  opacity:0;
  transform:translateY(28px);
  transition:opacity .9s cubic-bezier(.16,1,.3,1),transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal.in {
  opacity:1;
  transform:none;
}
.photo,.roomVisual,.tourVisual,.cafeVisual,.accPhoto {
  transition:transform .6s cubic-bezier(.16,1,.3,1);
}
.photo:hover,.roomVisual:hover,.tourVisual:hover,.cafeVisual:hover,.accPhoto:hover {
  transform:scale(1.035);
}
.details,.uni {
  position:relative;
  overflow:hidden;
}
.details>.wrap,.uni>.wrap {
  position:relative;
  z-index:1;
}
.detailsWatermark {
  position:absolute;
  left:-2vw;
  bottom:-4vw;
  font:700 15vw/1 'Fraunces',Georgia;
  color:#ffffff09;
  letter-spacing:-.04em;
  pointer-events:none;
  user-select:none;
  white-space:nowrap;
}
.uniWatermark {
  position:absolute;
  right:-3vw;
  top:-3vw;
  font:700 11vw/1 'Fraunces',Georgia;
  color:#ffffff09;
  letter-spacing:-.04em;
  pointer-events:none;
  user-select:none;
  white-space:nowrap;
}
@media(prefers-reduced-motion:reduce) {
  .reveal {
    opacity:1!important;
    transform:none!important;
    transition:none!important;
  }
  .photo,.roomVisual,.tourVisual,.cafeVisual,.accPhoto,.btn,.navbtn,.nav {
    transition:none!important;
  }
  .hero .heroBrands,.hero h1,.hero .lead,.hero .actions {
    opacity:1!important;
    transform:none!important;
    animation:none!important;
  }
  .hero .btn.rust {
    animation:none!important;
  }
  .scrollCue span {
    animation:none!important;
  }
}
